最佳答案
假设我们有这个模型:
public class Tiers
{
public List<Contact> Contacts { get; set; }
}
还有
public class Contact
{
public int Id { get; set; }
public Tiers Tiers { get; set; }
public Titre Titre { get; set; }
public TypeContact TypeContact { get; set; }
public Langue Langue { get; set; }
public Fonction Fonction { get; set; }
public Service Service { get; set; }
public StatutMail StatutMail { get; set; }
}
对于 EF7,我希望用一条指令从 Tiers 表中检索所有数据,包括 Contact 表、 Titre 表、 TypeContact 表等等。使用 Include/ThenInclude API,我可以编写如下代码:
_dbSet
.Include(tiers => tiers.Contacts)
.ThenInclude(contact => contact.Titre)
.ToList();
但是在 Titre 属性之后,我不能包含其他引用,比如 TypeContact、 Langue、 fontion... Include 方法建议使用 Tiers 对象,而 then Include 建议使用 Titre 对象,而不是 Contact 对象。如何包括联系人列表中的所有引用?我们可以通过一条指令实现这一点吗?