- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在对一个表执行一个简单的“获取”,例程的“包含”部分花费的时间比我预期的要长得多。
我已将性能问题缩小到这段代码:
private List<Task> GetFilteredTasksWithOptionalIncludes(EntityRepository<Task> repo, ITaskRequest model, TaskIncludesModel includes, string accountID)
{
var includedEntities = new List<Expression<Func<Task, object>>>();
includedEntities.Add(t => t.Document.Transaction.Account);
includedEntities.Add(p => p.Signature);
if (includes != null)
{
if (includes.IncludeWorkflowActions)
{
includedEntities.Add(p => p.Actions);
}
if (includes.IncludeFileAttachments)
{
includedEntities.Add(p => p.Attachments);
}
}
IQueryable<Task> tasks = repo.GetAllIncluding(includedEntities.ToArray()); //RETURNS SLOW
return tasks.ToList(); //RETURNS FAST
}
我的所有代码都运行得非常快,直到它到达 repo.GetAllInclude 方法,如下所示:
public IQueryable<TEntity> GetAllIncluding(params Expression<Func<TEntity, object>>[] includeProperties)
{
foreach (var includeProperty in includeProperties)
{
dbSet.Include(includeProperty).Load();
}
return dbSet;
}
当我逐步执行代码时,GetAllIncluded() 行返回最多需要 6 或 7 秒,但 tasks.ToList() 返回所需的时间不到一秒(这是实际 SQL 查询时得到运行所以这让我感到惊讶)。
当我注释掉加载包含的 foreach 循环时,整个调用在一秒钟内返回。是什么导致包含需要这么长时间?有没有更好的方法来做到这一点?
Here is the SQL Profiler around the call if it helps.红线上方的所有内容都来自 GetAllIncluded 调用。红线下方的所有内容都是对数据的实际查询。有没有更有效的方法来做到这一点?一个相当简单的调用似乎不需要 10 秒。
最佳答案
当您在该循环中调用 .Load()
时,您实际上是在访问数据库并将数据带入上下文。
因此,根据您进入该循环的频率,您将一遍又一遍地运行该查询。
我建议删除 .Load()
但您仍然可以保留包含函数。通用存储库的基本包含函数如下所示:
public IQueryable<TEntity> Including(params Expression<Func<TEntity, object>>[] _includeProperties)
{
IQueryable<TEntity> query = context.Set<TEntity>();
return _includeProperties.Aggregate(query, (current, includeProperty) => current.Include(includeProperty));
}
一旦您调用了它并获得了您的 IQueryable
,只需对其调用 .ToList()
即可仅从 SQL 中提取一次。
阅读 http://msdn.microsoft.com/en-gb/data/jj592911.aspx查看 Load 方法实际执行的操作。
根据您的评论进行编辑:
您可以实现我发布的上述功能,并像您现在所做的那样使用它,如果需要,可以在之后对可查询的任务隐式调用 Load()
。
private List<Task> GetFilteredTasksWithOptionalIncludes(EntityRepository<Task> repo, ITaskRequest model, TaskIncludesModel includes, string accountID)
{
var includedEntities = new List<Expression<Func<Task, object>>>();
includedEntities.Add(t => t.Document.Transaction.Account);
includedEntities.Add(p => p.Signature);
if (includes != null)
{
if (includes.IncludeWorkflowActions)
{
includedEntities.Add(p => p.Actions);
}
if (includes.IncludeFileAttachments)
{
includedEntities.Add(p => p.Attachments);
}
}
IQueryable<Task> tasks = repo.Including(includedEntities.ToArray());
tasks.Load();
return tasks.ToList();
}
关于c# - 为什么 Entity Framework dbSet.Include 需要这么长时间才能返回?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23409148/
我可以将我的 DbSet 从 DbSet 获取到 DbSet 吗? public IQueryable GetData() where T : class, IData { var
版本信息: 我正在使用 C# 4.5、Entity Framework 6.0 和 MEF。 代码和单元测试 我创建了一个测试项目来解释这个问题: https://skydrive.live.com/
在 Entity Framework Code First 中,当我声明实体时,我必须使用 DbSet<> 类型的属性。例如: public DbSet Products { get; set; }
我们目前正在集成一个为我们提供数据的外部系统。该系统包含有关客户许可证及其更新时间的信息。每个许可证或作为模型调用的 TPCase 可以有多个更新周期 TPRenewalCycle。然后,客户可以在我
我的问题是我正在使用的系统期望数据为 IQuearable entityframework 给我的数据为 IQueryable 这是我需要实现的接口(interface): public IQuery
我一直在使用 Add() 并遇到一个问题,即当 Add 一个子实体时,父实体在数据库中被复制。使用 Attach() 解决了这个问题,但我想知道为什么而不是盲目地摸索。 最佳答案 好吧,当您使用 At
我想通过实体模型(使用模型优先方法创建)将我的 DataGridView 控件数据绑定(bind)到数据库,我正在使用 EF 5.0、.NET 4.5 和 winforms 我的绑定(bind)组织如
Entity Framework 6中有多种添加/删除实体的方法,例如添加实体,我们可以使用:- b.Students.Add(student); db.SaveChanges(); 或 db.Ent
我想要一个字符串列表,并使用 EF-CodeFirst 将它们保存到数据库或从数据库加载它们。这是我的 DbContext 类: public class KeysDbContext : DbCont
我有两种类型的实体:员工实体和办公室实体,两者之间存在一对多关系,因此一个办公室有很多员工。对于 EF,在上下文文件中为每个实体创建一个 DbSet: public DbSet Offices { g
我的 Entity Framework 上下文: public class MyContext : DbContext { public DbSet Companies { get; set;
我正在尝试在 mac os webapi 上使用 asp.net core 2.1 调用 View 或存储过程。 using System; using System.Linq; using Auth
假设我有两个不同的类(class)。它们共享一些属性,但也有一些单独的属性。 public class A { // Shared properties public int Id {
这个问题在这里已经有了答案: 9年前关闭。 Possible Duplicate: ObjectSet.Context vs DbSet 首先从 EF 代码中的 DbSet,有没有办法引用父 DbCo
DbSet.Add() 将单个实体添加到 DbSet。但是没有 DbSet.AddRange() 来添加实体列表。有没有一种方法可以直接从 EF 调用,允许我添加实体列表?如果没有,EF不提供这种方法
我有通用的存储库模式的基本实现 IRepository其中包含 Add , Remove , Find等,我有更精确的存储库,例如 IActorRepository和 IFilmRepository源
我有一个包含许多 DbSet 的上下文。其中一些 DbSet 实现了一个称为 IActivity 的接口(interface),该接口(interface)包含许多常用字段,例如 TimeReceiv
(我这里使用的是 EF6)假设我有一个抽象类: public abstract class MyContext : DbContext 让我们使用它: public class MyTestConte
我想获取一个 DbSet,其中包含我存储在变量中的类名。 我试过这段代码: string name = "ParosLineas"; var dbset = (System.Data.Entity.D
我见过人们包装 DbSet在Lazy类别:Lazy> .我只能在互联网上找到另一个做 this 的人. 这样做的效果是什么? 最佳答案 EntityFramework 在内部避免做一些它需要在启动时做
我是一名优秀的程序员,十分优秀!