How does Entity Framework utilize caching to improve performance?

  • Does not utilize caching for performance improvement
  • Utilizes a disk-based cache
  • Utilizes an in-memory cache
  • Utilizes both in-memory and disk-based caches
Entity Framework uses both in-memory and disk-based caching to improve performance. In-memory caching reduces database round-trips by storing frequently accessed data in memory. Disk-based caching stores query results on disk to reduce the need for re-executing queries.
Add your answer
Loading...

Leave a comment

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