Skip to main content
.NET 6.0+

ICachedDataStoreServiceAsync.SelectDataCachedAsync(DataCacheCookie, SelectStatement[]) Method

Uses specified query statements to asynchronously fetch data from a cached data store.

Namespace: DevExpress.Xpo.DB

Assembly: DevExpress.Xpo.v23.2.dll

NuGet Package: DevExpress.Xpo

Declaration

[OperationContract(Action = "http://tempuri.org/ICachedDataStoreService/SelectDataCached", ReplyAction = "http://tempuri.org/ICachedDataStoreService/SelectDataCachedResponse")]
[XmlSerializerFormat]
Task<OperationResult<DataCacheSelectDataResult>> SelectDataCachedAsync(
    DataCacheCookie cookie,
    SelectStatement[] selects
)

Parameters

Name Type Description
cookie DataCacheCookie

A Root element’s state stored by a specific cache Node.

selects SelectStatement[]

An array of query statements.

Returns

Type Description
Task<OperationResult<DataCacheSelectDataResult>>

A Task that returns the data fetch result.

See Also