The use of ________ loading instead of eager loading can improve performance in certain scenarios in Entity Framework.

  • Lazy
  • Deferred
  • Delayed
  • Deferred and Lazy
In Entity Framework, "Deferred Loading" refers to a technique where related entities are loaded from the database only when they are accessed. This can improve performance by loading data on-demand rather than eagerly loading all related entities upfront. Hence, Deferred Loading is a more suitable option in certain scenarios to optimize performance.
Add your answer
Loading...

Leave a comment

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