Skip to main content
A newer version of this page is available. .
All docs
V20.2
.NET Framework 4.5.2+

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

Calls the ICacheToCacheCommunicationCore.NotifyDirtyTables method with error handling.

Namespace: DevExpress.Xpo.DB

Assembly: DevExpress.Xpo.v20.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