EF Core Query Splitting vs Single Query: Which One Should You Use?
Entity Framework Core makes it very easy to load related data using Include() and ThenInclude().
For example:
var students = await context.Students
.Include(x => x.Standard)
.Include(x => x.Di
sudhirpipaliya.hashnode.dev12 min read