Which loading strategy in Entity Framework delays the loading of related data until it is specifically requested?

  • Deferred Loading
  • Eager Loading
  • Explicit Loading
  • Lazy Loading
Lazy loading in Entity Framework delays the loading of related data until it is specifically requested. This means that the related entities are not loaded along with the main entity by default, but they are fetched from the database only when accessed for the first time. Lazy loading can help improve performance by reducing the amount of data initially fetched from the database.
Add your answer
Loading...

Leave a comment

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