WebApiDataStoreService.NotifyDirtyTables(WebApiDataContainer<String[]>) Method
Calls the ICacheToCacheCommunicationCore.NotifyDirtyTables 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<String[]> | An object that contains an array of table names specifying modified tables. |
Returns
Type | Description |
---|---|
OperationResult<DataCacheResult> | A Root element’s state. |
Remarks
[HttpPost]
public OperationResult<DataCacheResult> NotifyDirtyTables([FromBody] WebApiDataContainer<string[]> data) {
return DataStoreService.NotifyDirtyTables(data);
}
See Also