To prevent the over-fetching of data, Entity Framework allows for ________ loading of related entities.

  • Eager
  • Explicit
  • Implicit
  • Lazy
Lazy loading defers the loading of related entities until they are actually needed, thus preventing over-fetching of data by loading only what is necessary at the moment. Eager loading, on the other hand, loads all related entities upfront, which may result in fetching more data than needed initially.
Add your answer
Loading...

Leave a comment

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