Skip to main content
.NET 6.0+

DataStoreService.SelectData(SelectStatement[]) Method

Fetches data from a data store using specified query statements and returns the operation result. This method delegates its call to the corresponding method of a data store passed as provider to the constructor.

Namespace: DevExpress.Xpo.DB

Assembly: DevExpress.Xpo.v23.2.dll

NuGet Package: DevExpress.Xpo

Declaration

public virtual OperationResult<SelectedData> SelectData(
    SelectStatement[] selects
)

Parameters

Name Type Description
selects SelectStatement[]

An array of query statements.

Returns

Type Description
OperationResult<SelectedData>

An OperationResult<SelectedData> denoting the result of the data fetch.

See Also