Statistics
The Highest Post







Statistics
Count 94
Avg 21.00
Min 21
Max 21

Details



Samuel Kodi What is the difference between lazy loading and eager loading? Lazy and eager loading are two different ways that Entity will load related data (like the Orders attached to our Customers).     Lazy loading means that when an entity is first read, its related entities are not loaded. Entity Framework waits until you try to access those entities before querying the database again. This can lead to multiple database queries. For instance, the following code will result in two different database queries:
Related Topics