________ is a feature in Entity Framework Core that was not available in Entity Framework 6, allowing for better performance optimization.
- Connection pooling
- Lazy loading
- Migrations
- Query caching
Lazy loading in Entity Framework Core enables on-demand loading of related entities, reducing the initial load time of entities and improving performance. This feature was not available in Entity Framework 6, making Entity Framework Core more efficient in certain scenarios.
Loading...
Related Quiz
- When implementing a complex transaction involving multiple DbSet operations, how does DbContext manage these operations to ensure data consistency?
- To manage different configurations for development and production, it is best to use ________ in Entity Framework.
- The ________ extension method can be used to dynamically include related entities based on a condition.
- Considering a case with many-to-many relationships, how would you structure a query to retrieve related data efficiently?
- In a complex model with mixed inheritance, ________ can be used to resolve ambiguity in the mapping.