Exception in lazy loading (Entity Framework)

▼魔方 西西 提交于 2019-12-02 06:21:42

问题


I use Entity Framework in my project. The issue is well known but supposed solutions (eg. this and this) doesn't work for me.

/// <summary>
/// Returns complete list of lecturers from DB.
/// </summary>
public IEnumerable<Lecturer> GetAllLecturers()
{
    IList<Lecturer> query;
    using (var dbb = new AcademicTimetableDbContext())
    {
        query = (from b in dbb.Lecturers select b).ToList();
    }
    Debug.WriteLine(query[0].AcademicDegree); // Exception (***)
    return query;
}

Exception (***):

The ObjectContext instance has been disposed and can no longer be used for operations that require a connection.

public class Lecturer
{
    public Lecturer()
    {
        this.Timetables = new List<Timetable>();
        this.Courses = new List<Course>();
    }

    public int Id_Lecturer { get; set; }
    public string Name { get; set; }
    public string Surname { get; set; }
    public string Phone_Number { get; set; }
    public Nullable<int> Academic_Degree_Id { get; set; }
    public virtual AcademicDegree AcademicDegree { get; set; }
    public virtual ICollection<Timetable> Timetables { get; set; }
    public virtual ICollection<Course> Courses { get; set; }
}

What's wrong?


回答1:


Lazy loading works until your DbContext lives.

With the using you dispose your DbContext so EF will throw an exception when you try to access the navigation properties outside the using block.

You can test this with moving the Debug.WriteLine inside the using block where it won't throw exception:

using (var dbb = new AcademicTimetableDbContext())
{
    query = (from b in dbb.Lecturers select b).ToList();
    Debug.WriteLine(query[0].AcademicDegree);
}

And the solution is to tell EF to eagerly load the navigation properties with the using Include method:

using (var dbb = new AcademicTimetableDbContext())
{
    query = (from b in dbb.Lecturers.Include(l => l.AcademicDegree) select b)
      .ToList();

}
Debug.WriteLine(query[0].AcademicDegree);


来源:https://stackoverflow.com/questions/13322661/exception-in-lazy-loading-entity-framework

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!