DbContext没有编译?

时间:2011-07-14 09:44:01

标签: c# .net entity-framework compiler-errors

我正在循序渐进地学习mvc并创建一个音乐商店但由于某种原因我无法获得以下代码......

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data.Entity;

namespace MvcMusicStore.Models
{
    public class MusicStoreEntities : DbContext
    {
        public DbSet<Album> Albums { get; set; }
        public DbSet<Genre> Genres { get; set; }
    }
}

DBcontext,DbSet和DbSet给出了错误......

  

错误1找不到类型或命名空间名称'DbContext'(您是否缺少using指令或程序集引用?)

为什么?

1 个答案:

答案 0 :(得分:5)

您必须将EntityFramework.dll程序集的引用添加到项目中。最简单的方法是安装相应的NuGet package。如果已安装ASP.NET MVC 3 Tools Update,则在创建新项目时,默认情况下会引用此NuGet包。如果没有,只需安装即可。