Clarify the cases in which you can include multiple levels of related entities using a single include statement.
In the Blogs example, instead of using .ThenInclude to include the Author's photo object you can go Blogs.Include(blog => blog.Author.Photo);.
Specify that this can only be used to navigate through non-collection properties, if that is indeed the case.
Document Details
⚠ Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.
ID: bbd36f35-e257-d0ed-8f28-f539ddcb71ec
Version Independent ID: 093903d5-f7c7-5a78-c0e5-0e2662dcedef
Clarify the cases in which you can include multiple levels of related entities using a single include statement. In the Blogs example, instead of using
.ThenInclude
to include the Author's photo object you can goBlogs.Include(blog => blog.Author.Photo);
. Specify that this can only be used to navigate through non-collection properties, if that is indeed the case.Document Details
⚠ Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.