DbContext和DbSet在System.Data.Entity名称空间中,并没有找到。提示错误

在学习MVC3时,按照其tutorials进行到http://www.asp.net/mvc/tutorials/getting-started-with-mvc3-part4-cs
发现,

 MovieDBContext : DbContext
    {
        public DbSet

中的DbContext和DbSet在System.Data.Entity名称空间中,并没有找到。提示错误。
于是在这儿找到了,需要在NuGet中安装EntityFramework.

http://stackoverflow.com/questions/5741109/the-type-or-namespace-name-dbcontext-could-not-be-found

你可能感兴趣的:(c#)