gpt4 book ai didi

.net - EF 4.1,代码优先 : Eager loading of cascading collections

转载 作者:行者123 更新时间:2023-12-03 20:21:46 25 4
gpt4 key购买 nike

如果我有以下类模型......

public class A
{
public int AId { get; set; }
public ICollection<B> BCollection { get; set; }
}

public class B
{
public int BId { get; set; }
public ICollection<C> CCollection { get; set; }
}

public class C
{
public int CId { get; set; }
}

...是否可以预先加载 A 类型的对象?从包含所有级联集合的数据库中?

我可以包括 BCollection像这样:
A a = context.ASet.Where(x => x.AId == 1)
.Include(x => x.BCollection)
.FirstOrDefault();

我还可以以某种方式包含 CCollection所有加载的 B对象,以便我得到 A使用单个数据库查询在内存中的所有相关对象?

最佳答案

使用 .Include(x => x.BCollection.Select(b => b.CCollection))还有described here .

它也适用于级联。每次您需要预先加载集合导航属性时,请使用 .Select .

关于.net - EF 4.1,代码优先 : Eager loading of cascading collections,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5377923/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com