Skip to main content
A newer version of this page is available. .

IDataStoreServiceAsync.SelectDataAsync(SelectStatement[]) Method

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

Namespace: DevExpress.Xpo.DB

Assembly: DevExpress.Xpo.v19.2.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