Try Playground
Show / Hide Table of Contents

Class QueryCacheExtensions

A static class that contains extension methods for caching entity framework query result sets.

Inheritance
System.Object
QueryCacheExtensions
Assembly: Alachisoft.NCache.EntityFrameworkCore.dll
Syntax
public static class QueryCacheExtensions : object

Methods

Name Description
FromCache<T>(QueryDeferred<T>, CachingOptions)

Checks if the result is available in cache or not. If it is available it is fetched from the cache and returned however if it is not available the query is executed on the database and the result is stored in cache as well as returned.

FromCache<T>(QueryDeferred<T>, out String, CachingOptions)

Checks if the result is available in cache or not. If it is available it is fetched from the cache and returned however if it is not available the query is executed on the database and the result is stored in cache as well as returned.

FromCache<T>(IQueryable<T>, CachingOptions)

Checks if the result set is available in cache or not. If it is available it is fetched from the cache and returned however if it is not available the query is executed on the database and the result set is stored in cache as well as returned.

FromCache<T>(IQueryable<T>, out String, CachingOptions)

Checks if the result set is available in cache or not. If it is available it is fetched from the cache and returned however if it is not available the query is executed on the database and the result set is stored in cache as well as returned.

FromCacheAsync<T>(QueryDeferred<T>, CachingOptions)

Asynchronously Checks if the result is available in cache or not. If it is available it is fetched from the cache and returned however if it is not available the query is executed on the database and the result is stored in cache as well as returned. The result is encapsulated in a task and returned.

FromCacheAsync<T>(IQueryable<T>, CachingOptions)

Asynchronously Checks if the result set is available in cache or not. If it is available it is fetched from the cache and returned however if it is not available the query is executed on the database and the result set is stored in cache as well as returned. The result set is encapsulated in a task and returned.

FromCacheOnly<T>(QueryDeferred<T>)

Executes the query on the cache and returns the result as generic type.

FromCacheOnly<T>(IQueryable<T>)

Executes the query on the cache and returns the result as generic IEnumerable.

FromCacheOnlyAsync<T>(QueryDeferred<T>)

Executes the query on the cache Asynchronously and returns the result set as generic IEnumerable encapsulated as a task.

FromCacheOnlyAsync<T>(IQueryable<T>)

Executes the query on the cache Asynchronously and returns the result set as generic IEnumerable encapsulated as a task.

GetDependency(DependencyType, String, String)

Return the result of the query from the cache. If the query is not cached yet, the query is materialized asynchronously and cached before being returned.

LoadIntoCache<T>(QueryDeferred<T>, CachingOptions)

Executes the query on the database irrespective of the fact that the result could have been in the cache and could have been served from there and updates the result in the cache.

LoadIntoCache<T>(QueryDeferred<T>, out String, CachingOptions)

Executes the query on the database irrespective of the fact that the result could have been in the cache and could have been served from there and updates the result set in the cache.

LoadIntoCache<T>(IQueryable<T>, CachingOptions)

Executes the query on the database irrespective of the fact that the result set could have been in the cache and could have been served from there and updates the result set in the cache.

LoadIntoCache<T>(IQueryable<T>, out String, CachingOptions)

Executes the query on the database irrespective of the fact that the result set could have been in the cache and could have been served from there and updates the result set in the cache.

LoadIntoCacheAsync<T>(QueryDeferred<T>, CachingOptions)

Executes the query on the database irrespective of the fact that the result could have been in the cache and could have been served from there and updates the result in the cache.

LoadIntoCacheAsync<T>(IQueryable<T>, CachingOptions)

Executes the query on the database irrespective of the fact that the result set could have been in the cache and could have been served from there and updates the result set in the cache.

In This Article
  • Methods

Contact Us

PHONE

+1 (214) 764-6933   (US)

+44 20 7993 8327   (UK)

 
EMAIL

sales@alachisoft.com

support@alachisoft.com

NCache
  • NCache Enterprise
  • NCache Professional
  • Edition Comparison
  • NCache Architecture
  • Benchmarks
Download
Pricing
Try Playground

Deployments
  • Cloud (SaaS & Software)
  • On-Premises
  • Kubernetes
  • Docker
Technical Use Cases
  • ASP.NET Sessions
  • ASP.NET Core Sessions
  • Pub/Sub Messaging
  • Real-Time ASP.NET SignalR
  • Internet of Things (IoT)
  • NoSQL Database
  • Stream Processing
  • Microservices
Resources
  • Magazine Articles
  • Third-Party Articles
  • Articles
  • Videos
  • Whitepapers
  • Shows
  • Talks
  • Blogs
  • Docs
Customer Case Studies
  • Testimonials
  • Customers
Support
  • Schedule a Demo
  • Forum (Google Groups)
  • Tips
Company
  • Leadership
  • Partners
  • News
  • Events
  • Careers
Contact Us

  • EnglishChinese (Simplified)FrenchGermanItalianJapaneseKoreanPortugueseSpanish

  • Contact Us
  •  
  • Sitemap
  •  
  • Terms of Use
  •  
  • Privacy Policy
� Copyright Alachisoft 2002 - 2025. All rights reserved. NCache is a registered trademark of Diyatech Corp.
Back to top