IDataStoreAsync.ModifyDataAsync(CancellationToken, ModificationStatement[]) Method
Uses specified modification statements to asynchronously update data in a data store.
Namespace: DevExpress.Xpo.DB
Assembly: DevExpress.Data.v25.1.dll
NuGet Package: DevExpress.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