SyntaxFix
Write A Post
Hire A Developer
Questions
EF Core: Using "ThenInclude" to load mutiple levels: For example:
var blogs = context.Blogs .Include(blog => blog.Posts) .ThenInclude(post => post.Author) .ThenInclude(author => author.Photo) .ToList();