https://docs.microsoft.com/es-es/ef/core/querying/related-data/eager
using (var context = new BloggingContext()) { var blogs = context.Blogs .Include(blog => blog.Posts) .ThenInclude(post => post.Author) .ToList(); }
https://docs.microsoft.com/es-es/ef/core/querying/related-data/eager
using (var context = new BloggingContext()) { var blogs = context.Blogs .Include(blog => blog.Posts) .ThenInclude(post => post.Author) .ToList(); }