EF Core Projection: How Select Can Improve Query Performance
When working with Entity Framework Core, one of the easiest ways to accidentally retrieve more data than necessary is to load complete entities.
For example:
var students = await context.Students
sudhirpipaliya.hashnode.dev17 min read