在包含的属性中包含自引用元素

时间:2019-06-24 07:39:16

标签: c# entity-framework-core

我的模型结构如下:

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

0 个答案:

没有答案