gpt4 book ai didi

c# - Entity Framework 6 : virtual collections lazy loaded even explicitly loaded on a query

转载 作者:太空狗 更新时间:2023-10-29 23:49:41 30 4
gpt4 key购买 nike

我在尝试优化查询时遇到了 EF6 问题。考虑这个有一个集合的类:

public class Client
{
... a lot of properties
public virtual List<Country> Countries { get; set; }
}

您可能知道,使用延迟加载时,当 EF 尝试为每个客户端获取所有国家/地区时,我遇到了这个 n+1 问题。

我尝试使用 Linq 投影;例如:

        return _dbContext.Clients
.Select(client => new
{
client,
client.Countries
}).ToList().Select(data =>
{
data.client.Countries = data.Countries; // Here is the problem
return data.client;
}).ToList();

我在这里使用了两个选择:第一个用于 Linq 投影,因此 EF 可以创建 SQL,第二个用于将结果映射到客户端类。这样做的原因是因为我使用的是存储库接口(interface),它返回 List<Client> .

尽管生成的查询中包含国家/地区,但当我尝试呈现整个信息时 EF 仍在使用延迟加载(同样的 n+1 问题)。避免这种情况的唯一方法是删除虚拟访问器:

public class Client
{
... a lot of properties
public List<Country> Countries { get; set; }
}

我对这个解决方案的问题是我们仍然希望这个属性是虚拟的。这种优化只对应用程序的特定部分是必要的,而在其他部分我们希望拥有这种延迟加载功能。

我不知道如何“通知” EF 有关此属性的信息,该属性已通过此 Linq 投影延迟加载。那可能吗?如果没有,我们还有其他选择吗? n+1 问题使应用程序需要几秒钟才能加载 1000 行。

编辑

感谢您的回复。我知道我可以使用 Include()扩展来获取集合,但我的问题是我需要添加一些额外的优化(很抱歉没有发布完整的示例,我认为集合问题就足够了):

public class Client
{
... a lot of properties
public virtual List<Country> Countries { get; set; }
public virtual List<Action> Actions { get; set; }
public virtual List<Investment> Investments { get; set; }
public User LastUpdatedBy {
get {
if(Actions != null) {
return Actions.Last();
}
}
}
}

如果我需要向客户呈现有关上次更新和投资数量的信息 ( Count() ),使用 Include()我实际上需要从数据库中获取所有信息。但是,如果我使用这样的投影

        return _dbContext.Clients
.Select(client => new
{
client,
client.Countries,
NumberOfInvestments = client.Investments.Count() // this is translated to an SQL query
LastUpdatedBy = client.Audits.OrderByDescending(m => m.Id).FirstOrDefault(),
}).ToList().Select(data =>
{
// here I map back the data
return data.client;
}).ToList();

我可以减少查询,只获取所需的信息(在 LastUpdatedBy 的情况下,我需要将属性更改为 getter/setter,这不是什么大问题,因为它只用于这个特定的申请的一部分)。

如果我通过这种方法(投影然后映射)使用 Select(),Include() EF 不考虑部分。

最佳答案

如果我没理解错你可以试试这个

_dbContext.LazyLoading = false;

var clientWithCountres = _dbContext.Clients
.Include(c=>c.Countries)
.ToList();

This will fetch Client and only including it Countries. If you disable lazy-loading the no other collection will load from the query. Unless you are specifying a include or projection.

仅供引用:Projection 和 Include() 不能一起工作,请参阅此答案如果您是投影,它将绕过包含。 https://stackoverflow.com/a/7168225/1876572

关于c# - Entity Framework 6 : virtual collections lazy loaded even explicitly loaded on a query,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41341716/

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