Skip to main content
All docs
V23.2
.NET 6.0+

WebApiDataStoreService.NotifyDirtyTables(WebApiDataContainer<String[]>) Method

Calls the ICacheToCacheCommunicationCore.NotifyDirtyTables method with error handling.

Namespace: DevExpress.Xpo.DB

Assembly: DevExpress.Xpo.v23.2.dll

NuGet Package: DevExpress.Xpo

Declaration

public OperationResult<DataCacheResult> NotifyDirtyTables(
    WebApiDataContainer<string[]> data
)

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