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

    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