In Entity Framework, ________ loading can be achieved by using the Include method with DbSet queries.

  • Deferred
  • Eager
  • Immediate
  • Lazy
In Entity Framework, eager loading can be achieved by using the Include method with DbSet queries. Eager loading allows you to retrieve related entities along with the main entities in a single query, reducing the number of database round trips and improving performance.
Add your answer
Loading...

Leave a comment

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