Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Entity Framework Core 2.0.1 Eager Loading on all nested related entities

I have a simple problem, but cant seem to find a way around it. I am using Entity Framework Core version 2.0.1 and want to eager load all my entities by default.

Example:

public class Order {     public int Id { get; set; }     public string Name { get; set; }     public int CustomerId { get; set; }     public Customer Customer { get; set; } }  public class Customer {     public int Id { get; set; }      public string Name { get; set; }     public int AddressId { get; set; }     public Address Address { get; set; } }  public class Address {     public int Id { get; set; }     public string PostCode { get; set; }     public string City { get; set; } } 

But when I load Order entity the related entity Customer and then inside it Address is null

What i have tried:

  • Tried upgrading to version 2.1 and use LazyLoadingProxies set to false

This is just an example, I have entities with multiple nested levels and I want to load nested related data inside of a Generic Repository, so can't use Include and ThenInclude as I don't know the actual entity type when loading it.

Example:

    public virtual async Task<IEnumerable<T>> GetAllAsync(Expression<Func<T, bool>> predicate = null)     {         if (predicate == null)         {             return await Context.Set<T>().ToListAsync();         }         return await Context.Set<T>().Where(predicate).ToListAsync();     } 

What am I missing? Is there something wrong I am doing in the repository? Any help or pointer towards a better design (if that's what the issue is here) are appreciated.

Thanks

like image 629
Jinish Avatar asked Mar 31 '18 23:03

Jinish


1 Answers

Such feature officially does not exist currently (EF Core 2.0.2 and also the incoming 2.1). It's been requested in Eager load all navigation properties #4851(Closed) and currently is tracked by Rule-based eager load (include) #2953 and Allow for declaring aggregates in the model (e.g. defining included properties or by some other means) #1985 (both in Backlog, i.e. no concrete schedule).

I can offer the following two custom extension methods:

using System; using System.Collections.Generic; using System.Linq; using Microsoft.EntityFrameworkCore.Metadata;  namespace Microsoft.EntityFrameworkCore {     public static partial class CustomExtensions     {         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)         {             if (maxDepth < 0) throw new ArgumentOutOfRangeException(nameof(maxDepth));             var entityType = context.Model.FindEntityType(clrEntityType);             var includedNavigations = new HashSet<INavigation>();             var stack = new Stack<IEnumerator<INavigation>>();             while (true)             {                 var entityNavigations = new List<INavigation>();                 if (stack.Count <= maxDepth)                 {                     foreach (var navigation in entityType.GetNavigations())                     {                         if (includedNavigations.Add(navigation))                             entityNavigations.Add(navigation);                     }                 }                 if (entityNavigations.Count == 0)                 {                     if (stack.Count > 0)                         yield return string.Join(".", stack.Reverse().Select(e => e.Current.Name));                 }                 else                 {                     foreach (var navigation in entityNavigations)                     {                         var inverseNavigation = navigation.FindInverse();                         if (inverseNavigation != null)                             includedNavigations.Add(inverseNavigation);                     }                     stack.Push(entityNavigations.GetEnumerator());                 }                 while (stack.Count > 0 && !stack.Peek().MoveNext())                     stack.Pop();                 if (stack.Count == 0) break;                 entityType = stack.Peek().Current.GetTargetType();             }         }      } } 

The first is just a convenient way of applying multiple string base Include.

The second does the actual job of collecting all Include paths for a type using EF Core provided metadata. It's basically directed cyclic graph processing starting with the passed entity type, excluding the inverse navigations of the included paths and emitting only the paths to "leaf" nodes.

The usage in your example could be like this:

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(); } 
like image 188
Ivan Stoev Avatar answered Sep 27 '22 22:09

Ivan Stoev