EF CTP4:"在创建模型时不能使用上下文。"

时间:2011-03-21 21:13:19

标签: c# .net entity-framework ctp4

我有两个实体:学生和班级。

他们之间有很多对多的关系:

class Student
{
   ICollection<Class> Classes{get;set;}
}

class Class
{
   ICollection<Student> Students{get;set;}
}

当我尝试执行以下语句时:

return _db.Students.Where(s => s.Email == email).FirstOrDefault();

我收到此错误消息:

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

1 个答案:

答案 0 :(得分:2)

当我忘记将codefirst模型中的app.config中的连接字符串放到webui项目中的web.config时,我运行了我的应用程序并引用了CF,我遇到了相同的问题/异常。 也许不是你的情况,但值得一试。