EF CTP4 : “The context cannot be used while the model is being created.”
问题 I have two entities : Student and Class. they have a many-to-many relationship between each other : class Student { ICollection<Class> Classes{get;set;} } class Class { ICollection<Student> Students{get;set;} } when I try to execute the following statement : return _db.Students.Where(s => s.Email == email).FirstOrDefault(); I get this error message : "The context cannot be used while the model is being created." 回答1: I had same issue/exception when I forgot to put connection string from the