Свойство InsteadOf

Gets or sets a value that indicates whether the DML trigger executes instead of the triggering Transact-SQL statement.

Пространство имен:  Microsoft.SqlServer.Management.SqlParser.Metadata
Сборка:  Microsoft.SqlServer.Management.SqlParser (в Microsoft.SqlServer.Management.SqlParser.dll)

Синтаксис

'Декларация
Property InsteadOf As Boolean
    Get
    Set
'Применение
Dim instance As IMutableDmlTrigger
Dim value As Boolean

value = instance.InsteadOf

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

Значение свойства

Тип: System. . :: . .Boolean
true if the trigger execute instead of the triggering Transact-SQL statement; otherwise, false.

Реализует

IDmlTrigger. . :: . .InsteadOf