Skip to main content
All docs
V26.1
  • 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.v26.1.dll

    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