When dealing with large datasets, ________ loading can be implemented for non-entity types to optimize performance.

  • Deferred
  • Eager
  • Explicit
  • Lazy
Entity Framework offers Lazy loading for non-entity types when dealing with large datasets. Lazy loading delays the loading of related data until it's specifically requested, which can help optimize performance by reducing the amount of data retrieved initially. This can be particularly beneficial when working with large datasets to minimize resource usage.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *