我的模型结构如下:
class A
{
public ICollection<B> MyProperty { get; set; }
}
class B
{
public ICollection<B> Childs { get; set; }
}
现在我想同时包含MyProperty
和所有Childs
。
我尝试使用:
databaseContext.A.Include(i => i.MyProperty).ThenInclude(i => i.Childs).First();
但是它仅包括Childs
上的第一层,如何包含所有Childs
?