💻
Software Development
Search...
Ctrl
K
Technical Knowledges
Technical Knowledges
GraphQL
.NET TECHNOLOGY
Fundamental
ORM
Entity Framework
How to improve our entity framework core query performance
Previous
Eager Loading vs Lazy Loading vs Explicit Loading
Next
Dapper
Last updated
1 year ago
1. Disable change tracking for read-only queries.
2. Use DbContext pooling.
3. Use IQueryable instead of IEnumerable
4. Use batch updates for large numbers of entities.
5. Use asynchronous instead of synchronous code.
6. Reduce the round trips to the database.
7. Caching in .NET Core.
8. Retrieve only the data you need.
9. Raw SQL queries.
10. Profiling and Monitoring.
11. Paging Implementation.
12. Indexing Implementation.