dotConnect for SQL Server Documentation
Devart.Common Namespace / DbCommandBuilder Class / UpdatingFields Property

In This Topic
    UpdatingFields Property (DbCommandBuilder)
    In This Topic
    Gets or sets the list of the fields, separated with ';' (semicolon), that should be updated with the update commands in the DbCommandBuilder. If the field is not included in the list, it will not be updated.
    Syntax
    'Declaration
     
    Public MustOverride Property UpdatingFields As String
    public abstract string UpdatingFields {get; set;}

    Property Value

    The list of the fields, separated with ';' (semicolon), that should be updated with the update commands in the DbCommandBuilder.
    Remarks
    If the property contains an empty string, all fields will be updated.
    See Also