Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

IDataStoreServiceAsync.SelectDataAsync(SelectStatement[]) Method

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

Namespace: DevExpress.Xpo.DB

Assembly: DevExpress.Xpo.v21.1.dll

NuGet Package: DevExpress.Xpo

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