第一个代码 CTP5 错误消息
我使用代码优先 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我刚刚发现:
这是 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).