In scenarios with disconnected entities, ________ loading needs careful handling to avoid unintended data retrieval.

  • Deferred
  • Eager
  • Explicit
  • Lazy
Deferred loading is crucial in scenarios with disconnected entities to prevent unintended data retrieval from the database. In disconnected scenarios, you typically load entities, detach them from the context, and then work with them. Deferred loading allows you to delay the loading of related entities until they are explicitly requested, helping to optimize performance and reduce unnecessary data retrieval.
Add your answer
Loading...

Leave a comment

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