我需要在以下场景中急切加载ExceptionAppointment。
我有3个表:约会,异常发生,具有以下关系的ExceptionAppointment
我知道我可以使用
急切加载ExecptionOccurrence context.Appointments.Include(a => a.ExceptionOcurrences).ToList();
但是如何更改表达式以包含ExceptionAppointment呢?
干杯 ABS
答案 0 :(得分:2)
所以答案是(对于没有阅读评论的人):
没有Lambda:
context.Appointments.Include("ExceptionOcurrences.ExceptionAppointment").ToList()
使用Lambda:
context.Appointments.Include(a => a.ExceptionOcurrences.Select(eo => eo.ExceptionAppointment)).ToList();