EntityFramework Eager加载所有导航属性

时间:2013-09-14 18:07:37

标签: c# entity-framework

我正在使用DI和IoC的Repository模式。

我在我的存储库中创建了一个函数:

T EagerGetById<T>(Guid id, string include) where T : class
{
    return _dbContext.Set<T>().Include(include).Find(id);
}

这将急切地在我的实体中加载一个导航属性。

但如果我的实体看起来像这样:

public class Blog : PrimaryKey
{
    public Author Author {get;set;}
    public ICollection<Post> Posts {get;set;}
}

我如何获得AuthorPosts的热切加载?我真的必须这样做:

_dbContext.Set<T>().Include("Author").Include("Posts").Find(id);

不可避免地产生这样的函数:

T EagerGetById<T>(Guid id, string include, string include2, string include3) where T : class
{
    return _dbContext.Set<T>().Include(include).Include(include2).Include(include3).Find(id);
}

因为那对于Generic存储库来说效率非常低!

2 个答案:

答案 0 :(得分:25)

如果您不想使用字符串,则还可以使用返回要急切加载的导航属性的表达式对任何N个包含执行相同操作。 (原始来源here

public IQueryable<TEntity> GetAllIncluding(params Expression<Func<TEntity, object>>[] includeProperties) 
{
   IQueryable<TEntity> queryable = GetAll();
   foreach (Expression<Func<TEntity, object>> includeProperty in includeProperties) 
   {
      queryable = queryable.Include<TEntity, object>(includeProperty);
   }

   return queryable;
}

答案 1 :(得分:0)

如果您需要所有导航属性,则别无选择,只能从数据库中读取所有这些属性。您可以在查询中Include,或者事先将它们读取到DbSet的本地数据中。

如果您想将多个包含传递给您的方法,只需将其定义如下:

T EagerGetById<T>(Guid id, params string[] includes)

您的用户可以致电EagerGetById(id, "inc1", "inc2", ...)

在您的方法中,只需为Include数组中的每个元素调用includes

您应准备好the params keyword