asp.net-mvc – MVC4脚手架添加控制器给出错误“无法检索元数据…”

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – MVC4脚手架添加控制器给出错误“无法检索元数据…”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用RTM版本的Windows 8和VS 2012 Ultimate。我有一个MVC4项目使用sqlCe 4.0与代码第一实体框架模型。

型号很简单:

public class MyThing
    {
        public int MyThingId { get; set; }

        public int UserId { get; set; }
        public string Title { get; set; }
        public string Address { get; set; }
        public string Description { get; set; }
        public DateTime Date { get; set; }
  }

当我尝试用内置的脚手架创建一个新的控制器,我得到以下错误

“Unable to retrieve Metadata for MyThing”

“Using the same DbCompiledModel to create contexts against different
types of database servers is not supported. Instead,create a
separate DbCompiledModel for each type of server being used.

如何让脚手架工作?

解决方法

通过反复尝试,我发现导致错误代码行(它是DbContext ctor):
public class MyThingDb : DbContext
{
    // If I comment this constructor out the scaffolding works
    public MyThingDb()
        : base("DefaultConnection")
    {
    }

    public DbSet<MyThing> Things{ get; set; }
}

WTF?

原文链接:https://www.f2er.com/aspnet/253602.html

猜你在找的asp.Net相关文章