InsteadOf 属性

Gets or sets a Boolean property that specifies whether the trigger runs instead of the insert, delete, or update operation.

命名空间:  Microsoft.SqlServer.Management.Smo
程序集:  Microsoft.SqlServer.Smo(在 Microsoft.SqlServer.Smo.dll 中)

语法

声明
<SfcPropertyAttribute> _
Public Property InsteadOf As Boolean
    Get
    Set
用法
Dim instance As Trigger
Dim value As Boolean

value = instance.InsteadOf

instance.InsteadOf = value
[SfcPropertyAttribute]
public bool InsteadOf { get; set; }
[SfcPropertyAttribute]
public:
property bool InsteadOf {
    bool get ();
    void set (bool value);
}
[<SfcPropertyAttribute>]
member InsteadOf : bool with get, set
function get InsteadOf () : boolean
function set InsteadOf (value : boolean)

属性值

类型:System. . :: . .Boolean
A Boolean value that specifies whether the trigger is executed instead of the insert, delete, or update operation.
If True, the trigger is executed instead of the insert, delete, or update operation.
If False (default), the trigger is executed as well as the insert, delete, or update operation.