在EF 4.3 Include
MetadataConvention中,Edm
Metadata和其他类已过时:
The XXX is no longer used. EdmMetadata is not
included in the model. <see cref=”EdmModelDiffer” />
is now used to detect changes in the model.
什么是EdmModelDiffer以及它应该如何使用?
看起来EdmModelDiffer是EF
代码迁移的内部类,因此传递回
用户是一个非常糟糕的
错误消息.
在Entity Framework 4.3中,EF迁移用于检测模型中的更改,并在需要时选择性地更新数据库. This博客文章解释了有关edmMetadata与新ef迁移的一些细节.
有一些EF迁移演练(google for it)可作为介绍.我也写了一篇关于它的series.
原文链接:https://www.f2er.com/aspnet/248705.html