Freigeben über


Update-Eigenschaft

Gets or sets a value that indicates whether the DML trigger is activated on an UPDATE statement.

Namespace:  Microsoft.SqlServer.Management.SqlParser.Metadata
Assembly:  Microsoft.SqlServer.Management.SqlParser (in Microsoft.SqlServer.Management.SqlParser.dll)

Syntax

'Declaration
Property Update As Boolean
    Get
    Set
'Usage
Dim instance As IMutableDmlTrigger
Dim value As Boolean

value = instance.Update

instance.Update = value
bool Update { get; set; }
property bool Update {
    bool get ();
    void set (bool value);
}
abstract Update : bool with get, set
function get Update () : boolean
function set Update (value : boolean)

Eigenschaftswert

Typ: System. . :: . .Boolean
true if the DML trigger activates on an UPDATE statement; otherwise, false.

Implementiert

IDmlTrigger. . :: . .Update