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.v24.1.dll
NuGet Packages: DevExpress.Win.PivotGrid, DevExpress.Win.TreeMap, DevExpress.Xpo
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