3

我使用实体框架,我试图使这样的查询通用,因此它可以用于任何实体类型(假设每个实体都有属性int Id)。

我试过这样的东西,但没有集合 ctx.TEntity 或类似的东西:

public class Queries<TEntity> where TEntity : AbstractEntity
{
  public Func<AdventureWorksEntities, int, TEntity> getQuery() {
   return
    CompiledQuery.Compile<AdventureWorksEntities, int, Entity>(
    (ctx, num) => ctx.TEntity.First(x => x.Id>num));
    }
}

抽象实体:

public abstract class AbstractEntity {

[Key]
public int Id {get; set};
}

谢谢你的想法:)

4

1 回答 1

4

我尝试使用 DbContext 编译查询,但没有成功(它不受支持,解决方法也不适合我)。您是否检查过此链接:http: //blogs.msdn.com/b/efdesign/archive/2011/06/30/auto-compiled-linq-queries-entity-framework-june-2011-ctp.aspx

你可以看到这篇文章:http ://social.msdn.microsoft.com/Forums/en-US/0c07e1d6-7db6-4348-b106-e576d3153b70/ef-40-compiled-queries-performance?forum=adonetefx 。我不认为使用 Compiled Queires 与现代版本的 EF(5 和 6)有很大的不同。

在第一次查询时,连接已建立,可能需要一些时间。

于 2013-10-25T07:42:29.750 回答