dotConnect for Adobe Commerce Documentation
Devart.Data.Magento Namespace / MagentoDataAdapter Class / DeleteCommand Property

In This Topic
    DeleteCommand Property
    In This Topic
    Gets or sets an Adobe Commerce statement to delete records from the data set.
    Syntax
    'Declaration
     
    Public Shadows Property DeleteCommand As MagentoCommand
    public new MagentoCommand DeleteCommand {get; set;}

    Property Value

    A MagentoCommand used during an update operation to delete records in Adobe Commerce that correspond to deleted rows in the System.Data.DataSet.
    Remarks
    During an update operation, if DeleteCommand is not set and primary key information is present in the System.Data.DataSet, you can use the MagentoCommandBuilder class to automatically generate the DeleteCommand, and additional commands needed to reconcile the System.Data.DataSet to the data source. To do this, set the SelectCommand property of the MagentoDataAdapter. For more information see "Automatically Generated Commands" in the Microsoft .NET Framework SDK documentation.
    See Also