Entity Framework Performance Optimization - SQL Server Performance
public MyContext() : base() { this.Configuration.LazyLoadingEnabled = false; } Query In-Memory Entities First EF keeps track of in-memory entities so retrieving an entity from memory is preferable to executing a database query. The easiest to implement ..
www.sql-server-performance.com |