問題:
Entity Framework でのすべての入れ子になった関連エンティティの一括読み込みCore 2.0.1 は困難であることが証明されています。具体的には、Order エンティティの Customer や Address などのネストされたエンティティは、ロードしようとしても null のままです。
試行:
さまざまなアプローチが試みられましたが成功しませんでした。 、以下を含む:
解決策:
現在、EF Core には、デフォルトですべてのネストされた関連エンティティを一括読み込みするための組み込み機能がありません。ただし、この機能を提供できるカスタム拡張メソッドがあります。
public static IQueryable<T> Include<T>(this IQueryable<T> source, IEnumerable<string> navigationPropertyPaths) where T : class { return navigationPropertyPaths.Aggregate(source, (query, path) => query.Include(path)); } public static IEnumerable<string> GetIncludePaths(this DbContext context, Type clrEntityType, int maxDepth = int.MaxValue) { // Omitted for brevity }
使用法:
public virtual async Task<IEnumerable<T>> GetAllAsync(Expression<Func<T, bool>> predicate = null) { var query = Context.Set<T>() .Include(Context.GetIncludePaths(typeof(T)); if (predicate != null) query = query.Where(predicate); return await query.ToListAsync(); }
この使用法は、指定されたエンティティ タイプ。
以上がEntity Framework Core にすべての入れ子になったエンティティを積極的に読み込む方法は?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。