What type of caching is natively supported by Entity Framework?

  • Eager loading
  • Explicit loading
  • Lazy loading
  • No caching
Entity Framework natively supports eager loading, which is the process of loading related entities along with the main entity being queried. This helps reduce the number of database queries by fetching all required data in a single query, enhancing performance.
Add your answer
Loading...

Leave a comment

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