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

    IDataStoreServiceAsync.ModifyDataAsync(ModificationStatement[]) Method

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

    Namespace: DevExpress.Xpo.DB

    Assembly: DevExpress.Xpo.v26.1.dll

    Declaration

    [OperationContract(Action = "http://tempuri.org/IDataStoreService/ModifyData", ReplyAction = "http://tempuri.org/IDataStoreService/ModifyDataResponse")]
    [XmlSerializerFormat]
    Task<OperationResult<ModificationResult>> ModifyDataAsync(
        ModificationStatement[] dmlStatements
    )

    Parameters

    Name Type Description
    dmlStatements ModificationStatement[]

    An array of data modification statements.

    Returns

    Type Description
    Task<OperationResult<ModificationResult>>

    A Task that returns the data modification result.

    See Also