"It works… but it's slow."If you’re building .NET apps with Entity Framework Core, the way you use ToList() might be silently sabotaging performance — especially on large datasets.
⚡ The Common Misuse of ToList()
var users = dbContext.Users.ToList()...