首页 > 代码库 > 解决MVC EF Code First错误:Model compatibility cannot be checked because the EdmMetadata type was not included in the model.
解决MVC EF Code First错误:Model compatibility cannot be checked because the EdmMetadata type was not included in the model.
Model compatibility cannot be checked because the EdmMetadata type was not included in the model. Ensure that IncludeMetadataConvention has been added to the DbModelBuilder conventions.
分析:
碰到此错误是由于使用了EF Code First来生成数据库,生成数据库之后又修改了模型。
两种解决方式:
1.在Global.asax.cs的Application_Start()方法中将Database.SetInitializer<xxxDbContext>(new DatabaseInitializer());改为Database.SetInitializer<xxxDbContext>(null)(如果有初始化数据库的数据方法的前提下)
2.删除数据库(治标不治本)。
USE MASTERGODROP DATABASE [DBNAME]
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。