WebApiDataStoreService.ModifyDataWithCookie(WebApiDataContainer<ModificationStatement[]>) Method
Calls the ICacheToCacheCommunicationCore.ModifyData 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<ModificationStatement[]> | An object that contains an array of data modification statements. |
Returns
Type | Description |
---|---|
OperationResult<DataCacheModificationResult> | The result of the data modifications. |
Remarks
[HttpPost]
public OperationResult<DataCacheModificationResult> ModifyDataWithCookie([FromBody] WebApiDataContainer<ModificationStatement[]> data) {
return DataStoreService.ModifyDataWithCookie(data);
}
See Also