System.NotSupportedException - 实体框架

时间:2016-08-04 14:04:51

标签: c# asp.net asp.net-mvc entity-framework asp.net-mvc-4

我有一个MVC项目,旨在列出SQL表中的数据;我不是那么有经验所以我一直在使用MSDN教程作为参考:

http://www.asp.net/mvc/overview/getting-started/getting-started-with-ef-using-mvc/creating-an-entity-framework-data-model-for-an-asp-net-mvc-application

我的项目或多或少相同,只是使用不同的变量名称,我想要一个可以查看/编辑/添加/删除的项目列表。

在我必须创建脚手架的步骤之后不久的错误。我在第5步运行项目,预计列表会在那时呈现,但是我收到了这个错误:

imgur

不确定是什么问题?

Context.cs

public class TimesheetContext : DbContext
{
    public TimesheetContext() : base("TimesheetContext")
    {

    }

    public DbSet<Clients> Clients { get; set; }
    public DbSet<Projects> Projects { get; set; }
    public DbSet<Users> Users { get; set; }

    protected override void OnModelCreating(DbModelBuilder modelBuilder)
    {
        modelBuilder.Conventions.Remove<PluralizingTableNameConvention>();
    }
}

0 个答案:

没有答案