EP 2 : Tips to write better LINQ Queries
Use of AsNoTracking
For read only queries e.g. (GetAll,GetById etc.) use AsNoTracking , when we use it entities are not tracked for change so it brings data more speedily.
Include necessary Entities and Columns
While retrieving data from multiple ta...
mwaseemzakir.hashnode.dev2 min read