To optimize query performance with lazy loading, Entity Framework can utilize ________ to generate proxy classes.

  • Change Tracking
  • DbContext
  • Dynamic Proxies
  • Eager Loading
Dynamic Proxies are used by Entity Framework to enable lazy loading. Lazy loading is a technique where related objects are automatically loaded from the database when you access a navigation property. Dynamic Proxies are generated by Entity Framework to enable lazy loading behavior for entity types.
Add your answer
Loading...

Leave a comment

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