Skip to main content
All docs
V25.1
  • .NET 8.0+

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

    Calls the ICacheToCacheCommunicationCore.NotifyDirtyTables method with error handling.

    Namespace: DevExpress.Xpo.DB

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