我需要在以下场景中急切加载 ExceptionAppointment。
我有 3 个表:Appointment、ExceptionOccurrence、ExceptionAppointment 具有以下关系
- Appointment 与 ExceptionOccurrence 有 1:m 的关系
- ExceptionOccurrence 与 ExceptionAppointment 是 1:1 的关系
我知道我可以使用急切加载 ExecptionOccurrence
context.Appointments.Include(a => a.ExceptionOcurrences).ToList();
但是如何更改表达式以包含 ExceptionAppointment 呢?
干杯腹肌