我的数据库中的对象有2个导航属性(B和C):
Object A
{
B bProperty
C cProperty
}
我希望在查询对象A时都包含它们。 我尝试了以下操作:
dbcontext.A.Include(x => x.B).ToList();
但我怎么也包括C?
答案 0 :(得分:2)
试试这个
dbcontext.A.Include(x => x.B).Include(x => x.C).ToList();
我一气呵成,所以在我的EF存储库类中,我有一个名为GetAllIncluding的方法,它等同于每个实体的通用方式,
public IQueryable<T> GetAllIncluding(params Expression<Func<T, object>>[] includes)
{
var query = DbSet.AsNoTracking();
query = includes.Aggregate(query, (current, includeProperty) => current.Include(includeProperty));
return query;
}
其中DbSet是IDbSet类型的私有成员,T是BaseEntity类型。
和我使用它的方式是这样的
MyGenericRepository<A>().GetAllIncluding(x=> x.B, x=> x.C).FirstOrDefault();
希望有所帮助。