SqlTriggerAttribute Constructor

Definition

An attribute on a method definition in an assembly, used to mark the method as a trigger in SQL Server.

C#
public SqlTriggerAttribute ();

Examples

C#
public partial class Triggers
{
    [SqlTrigger(Target="authors", Event="FOR UPDATE")]
    public static void AuthorsUpdateTrigger()
    {
        //...
    }
}

Remarks

The following example specifies that the trigger is activated by updating existing data (UPDATE) in the table authors.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1