________ loading can potentially lead to the N+1 query problem in Entity Framework.

  • Deferred
  • Eager
  • Explicit
  • Lazy
Lazy loading in Entity Framework defers the loading of related entities until they are accessed. However, it can lead to the N+1 query problem where additional queries are executed for each related entity, impacting performance.
Add your answer
Loading...

Leave a comment

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