第一个代码 CTP5 错误消息

发布于 2024-10-18 06:23:32 字数 388 浏览 4 评论 0原文

我使用代码优先 CTP5 设置的新项目收到以下错误消息。在网上找不到任何有关它的信息。有人遇到过这个错误信息吗?

创建模型时无法使用上下文。

第一次调用我的数据库上下文时会发生这种情况(代码如下):

using (StaffData context = new StaffData())
{
  return context.Employees.Count(e => e.EmployeeReference) == 1;
}

此时数据库尚未创建。我有一个在 app_start 中设置的数据库初始化程序 DropCreateDatabaseIfModelChanges

I get the following error message with a new project I have set using code first CTP5. Can't find anything on the web about it. Has anyone encountered this error message?

The context cannot be used while the model is being created.

This occurs the first time my database context is called (code below):

using (StaffData context = new StaffData())
{
  return context.Employees.Count(e => e.EmployeeReference) == 1;
}

At this point the database has not been created. I have a database initialiser DropCreateDatabaseIfModelChanges which I set in app_start.

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

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

发布评论

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

评论(1

辞旧 2024-10-25 06:23:32

我刚刚发现:

这是 CTP5 中的一个错误,具有自引用多对多关系。不幸的是,没有解决方法,因此您需要删除该关系,直到下一个版本(本季度末)。

I just found out:

This is a bug in CTP5 with self referencing many to many relationships. There is unfortunately no workaround so you will need to remove the relationship until the next release (later this quarter).

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