难以实现 EFCodeFirst.CreateTablesOnly / DontDropDbJustCreateTablesIfModelChangedStart
我在实现 EFCodeFirst.CreateTablesOnly 时遇到困难(更改为 DontDropDbJustCreateTablesIfModelChangedStart)。
我已经使用 NUGET 成功拉入了包。 中提到了
现在, packages.config
和 DontDropDbJustCreateTablesIfModelChangedStart.cs
我已将 Devtalk.EF.CodeFirst 添加到
我的 app_start 目录中的引用中。
但我仍然无法使用 DontDropDbJustCreateTablesIfModelChangedStart 类。当我这样做时,应用程序会因消息而终止
无法加载文件或程序集“EntityFramework,版本=4.1.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' 或其之一 依赖关系。找到的程序集的清单定义不 匹配装配参考。 (HRESULT 异常:0x80131040)
当我检查 DontDropDbJustCreateTablesIfModelChangedStart 的定义时,我发现它只有签名而没有定义。
我做错了什么?或者我遗漏了哪一步?我应该实现类/方法吗?
I'm having difficulty implementing EFCodeFirst.CreateTablesOnly (changed to DontDropDbJustCreateTablesIfModelChangedStart).
I have successfully pulled in the package using NUGET. Now there is a mention of
in packages.config
and a DontDropDbJustCreateTablesIfModelChangedStart.cs
I've added Devtalk.EF.CodeFirst to references
in my app_start directory.
But I still can't make use of the DontDropDbJustCreateTablesIfModelChangedStart class. When I do, the app dies with msg
Could not load file or assembly 'EntityFramework, Version=4.1.0.0,
Culture=neutral, PublicKeyToken=b77a5c561934e089' or one of its
dependencies. The located assembly's manifest definition does not
match the assembly reference. (Exception from HRESULT: 0x80131040)
When I check definition of DontDropDbJustCreateTablesIfModelChangedStart, I find it only has a signature and not a definition.
What did I do wrong? Or what step did I leave out? Am I supposed to Implement the Class/Method?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
问题是该库可能是使用 EntityFramework.dll 版本 4.1.0.0 编译的,并且作者没有将其更新为版本 4.2.0.0 和 4.3.0.0。尝试在您的网站中重定向版本 4.1.0.0 到版本 4.3.0.0 .config 文件。
The problem is that library was probably compiled with EntityFramework.dll version 4.1.0.0 and author didn't update it for version 4.2.0.0 and 4.3.0.0. Try to redirect version 4.1.0.0 to version 4.3.0.0 in your web.config file.
不要使用 EF 的迁移:
http://blogs.msdn.com/b/adonet/archive/2012/02/09/ef-4-3-released.aspx
Don't Use it use EF's Migrations:
http://blogs.msdn.com/b/adonet/archive/2012/02/09/ef-4-3-released.aspx