Method LoadIntoCache
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.
Declaration
public static IEnumerable<T> LoadIntoCache<T>(this IQueryable<T> query, CachingOptions options)
where T : class
Parameters
Type | Name | Description |
---|---|---|
IQueryable<T> | query | The query to be executed. |
CachingOptions | options | The option that will be used to store the result set. |
Returns
Type | Description |
---|---|
IEnumerable<T> | Returns the result set of the query after executing it on the databse and storing it in the cache. |
Type Parameters
Name | Description |
---|---|
T | The generic type of the collection |
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.
Declaration
public static IEnumerable<T> LoadIntoCache<T>(this IQueryable<T> query, out string cacheKey, CachingOptions options)
where T : class
Parameters
Type | Name | Description |
---|---|---|
IQueryable<T> | query | The query to be executed. |
System.String | cacheKey | The key against which the result set will be cached is returned as out parameter. |
CachingOptions | options | The option that will be used to store the result set. |
Returns
Type | Description |
---|---|
IEnumerable<T> | Returns the result set of the query after executing it on the databse and storing it in the cache. |
Type Parameters
Name | Description |
---|---|
T | The generic type of the collection |
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.
Declaration
public static T LoadIntoCache<T>(this QueryDeferred<T> query, CachingOptions options)
Parameters
Type | Name | Description |
---|---|---|
Alachisoft.NCache.EntityFrameworkCore.QueryDeferred<T> | query | The query to be executed. |
CachingOptions | options | The option that will be used to store the result. |
Returns
Type | Description |
---|---|
T | Returns the result of the query after executing it on the databse and storing it in the cache. |
Type Parameters
Name | Description |
---|---|
T | The generic type of the result |
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.
Declaration
public static T LoadIntoCache<T>(this QueryDeferred<T> query, out string cacheKey, CachingOptions options)
Parameters
Type | Name | Description |
---|---|---|
Alachisoft.NCache.EntityFrameworkCore.QueryDeferred<T> | query | The query to be executed. |
System.String | cacheKey | The key against which the result will be cached is returned as out parameter. |
CachingOptions | options | The option that will be used to store the result. |
Returns
Type | Description |
---|---|
T | Returns the result of the query after executing it on the databse and storing it in the cache. |
Type Parameters
Name | Description |
---|---|
T | The generic type of the collection |