难以实现 EFCodeFirst.CreateTablesOnly / DontDropDbJustCreateTablesIfModelChangedStart

发布于 2025-01-06 03:58:58 字数 672 浏览 1 评论 0原文

我在实现 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

贩梦商人 2025-01-13 03:58:58

问题是该库可能是使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文