Skip to main content
A newer version of this page is available. .

IDataStoreAsync.ModifyDataAsync(CancellationToken, ModificationStatement[]) Method

Uses specified modification statements to asynchronously update data in a data store.

Namespace: DevExpress.Xpo.DB

Assembly: DevExpress.Data.v20.2.dll

NuGet Packages: DevExpress.Data, DevExpress.WindowsDesktop.Data

Declaration

Task<ModificationResult> ModifyDataAsync(
    CancellationToken cancellationToken,
    params ModificationStatement[] dmlStatements
)

Parameters

Name Type Description
cancellationToken CancellationToken

A CancellationToken object that delivers a cancellation notice to the running operation.

dmlStatements ModificationStatement[]

An array of data modification statements.

Returns

Type Description
Task<ModificationResult>

A Task that returns the data modification result.

See Also