Skip to main content

ICachedDataStoreWarpServiceAsync.WarpSelectDataCachedAsync(DataCacheCookie, SelectStatement[]) Method

Uses specified query statements to asynchronously fetch data from a cached data store and compress the result.

Namespace: DevExpress.Xpo.DB

Assembly: DevExpress.Xpo.v23.2.dll

NuGet Package: DevExpress.Xpo

Declaration

[OperationContract(Action = "http://tempuri.org/ICachedDataStoreService/WarpSelectDataCached", ReplyAction = "http://tempuri.org/ICachedDataStoreService/WarpSelectDataCachedResponse")]
[XmlSerializerFormat]
Task<OperationResult<DataCacheWarpSelectDataResult>> WarpSelectDataCachedAsync(
    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<DevExpress.Xpo.DB.DataCacheWarpSelectDataResult>>

A Task that is the data fetch result.

See Also