无法从模型生成数据库:System.EntryPointNotFoundException

发布于 2024-12-15 01:07:23 字数 945 浏览 0 评论 0原文

当尝试从 EF 模型生成数据库时,我遇到了一个奇怪的错误。我已经能够在一个简单的场景中重现这一点。我创建了一个新项目、一个新的实体数据模型、一个仅以 Id 作为键的新实体。然后我选择从模型生成数据库,选择我的数据库,单击下一步...,然后出现以下错误:

Encountered the following errors while processing the template
'...\DBGen\SSDLToSQL10.tt':
Line 0, Column 0:
'Running transformations: System.EntryPointNotFoundException:
 Entry point was not found.  
at System.Collections.Generic.ICollection`1.get_Count()
...

生成数据库错误

生成数据库错误特写

模板文件位于错误消息中引用的位置.
针对 MS SQL Server Express 以及 2008 R2 进行了测试。
我很确定我之前使用过从模型生成数据库功能并且效果很好,但我不确定到底是多久以前(至少半年)。我在安装 EF 4.1 时收到此错误消息。现在我更新到版本4.2,但仍然遇到同样的问题。
我使用的是安装了 SP1 的 Visual Studio 2010(版本 10.0.40219.1 SP1Rel)。 有人见过这样的事情吗?任何想法出了什么问题以及如何解决这个问题?

I've got a weird error when trying to generate database from an EF model. I've been able to reproduce this in a simple scenario. I create a new project, a new Entity Data Model, a new Entity with just the Id as the Key. Then I select Generate Database from Model, choose my DB, click Next... and then I get the following error:

Encountered the following errors while processing the template
'...\DBGen\SSDLToSQL10.tt':
Line 0, Column 0:
'Running transformations: System.EntryPointNotFoundException:
 Entry point was not found.  
at System.Collections.Generic.ICollection`1.get_Count()
...

Generate DB Error

Generate DB Error closeup

The template file is present at the location referenced in the error message.
Tested against both MS SQL Server Express as well as 2008 R2.
I am pretty sure I used the Generate Database from Model feature before and it worked fine, but I am not sure how long ago exactly (at least half a year). I got this error message with EF 4.1 installed. Now I updated to version 4.2 and am still getting the same problem.
I am using Visual Studio 2010 with SP1 installed (Version 10.0.40219.1 SP1Rel).
Anyone seen anything like this before? Any ideas what's wrong and how to fix this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

遥远的她 2024-12-22 01:07:23

我们也遇到了这个问题并解决了问题,如下所示:

在edmx文件中右键单击机构之间的空白处。选择“属性”。
- 在 edmx 属性窗口中,键“DDL Generation Template”应更改为值“SSDLToOracle.tt”。这就是错误的根源!
(此模板定义了转换oracle。可以根据您的喜好自定义模板以转换类型)

-还将关键的“数据库生成工作流程”更改为“通过T4(TPT)生成Oracle”。 Xaml'(不要发生其他错误)。

我希望这也能解决您的错误!

特别感谢 QUAY 的 Paulo Barbosa 首席技术官提供此解决方案

We also had this and solved the problem as follows:

In-edmx file right-click on the blank space between the agencies. Select the 'Properties'.
-In the properties window edmx, the key 'DDL Generation Template "should be changed to the value' SSDLToOracle.tt '. This was the source of the error!
(This template defines the conversion oracle. The template can be customized to convert types according to your preference)

-Change also the key 'Database generation workflow' to 'Generate Oracle via T4 (TPT). Xaml' (not to other error occurs).

I hope that resolves the error for you too!

Special thanks for this solution to Paulo Barbosa CTO at QUAY

呆头 2024-12-22 01:07:23

请仔细检查您是否曾经安装过“EF 4.1 June CTP”。只需卸载 EF 4.1 June CTP 并重新安装 4.2。

Please double check whether you have ever installed "EF 4.1 June CTP". Just uninstall EF 4.1 June CTP and reinstall 4.2.

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