WebApiDataStoreService.SelectDataWithCookie(WebApiDataContainer<SelectStatement[]>) Method
Calls the ICacheToCacheCommunicationCore.SelectData method with error handling.
Namespace: DevExpress.Xpo.DB
Assembly: DevExpress.Xpo.v24.1.dll
NuGet Packages: DevExpress.Win.PivotGrid, DevExpress.Win.TreeMap, DevExpress.Xpo
NuGet Package: DevExpress.Xpo
Declaration
Parameters
Name | Type | Description |
---|---|---|
data | DevExpress.Xpo.DB.Helpers.WebApiDataContainer<SelectStatement[]> | An object that contains an array of query statements. |
Returns
Type | Description |
---|---|
OperationResult<DataCacheSelectDataResult> | The result of the data fetch. |
Remarks
[HttpPost]
public OperationResult<DataCacheSelectDataResult> SelectDataWithCookie([FromBody] WebApiDataContainer<SelectStatement[]> data) {
return DataStoreService.SelectDataWithCookie(data);
}
See Also