Skip to main content
All docs
V26.1
  • .NET Framework 4.6.2+

    IDataStoreServiceAsync.SelectDataAsync(SelectStatement[]) Method

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

    Namespace: DevExpress.Xpo.DB

    Assembly: DevExpress.Xpo.v26.1.dll

    Declaration

    [OperationContract(Action = "http://tempuri.org/IDataStoreService/SelectData", ReplyAction = "http://tempuri.org/IDataStoreService/SelectDataResponse")]
    [XmlSerializerFormat]
    Task<OperationResult<SelectedData>> SelectDataAsync(
        SelectStatement[] selects
    )

    Parameters

    Name Type Description
    selects SelectStatement[]

    An array of query statements.

    Returns

    Type Description
    Task<OperationResult<SelectedData>>

    A Task that returns the data fetch result.

    See Also