Data access: EF Core best practices (no tracking, lazy loading,?
migrations)
- Use No Tracking queries for read-only data to improve performance.
- Use lazy loading cautiously; prefer explicit loading to avoid surprises.
- Manage migrations with proper version control.
- Use async queries to avoid blocking.