SqlTriggerAttribute.Target Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Table à laquelle le déclencheur s'applique.
public:
property System::String ^ Target { System::String ^ get(); void set(System::String ^ value); };
public string Target { get; set; }
member this.Target : string with get, set
Public Property Target As String
Valeur de propriété
Valeur String représentant le nom de la table.
Exemples
public partial class Triggers
{
[SqlTrigger(Name="trig_onpubinsert", Target="publishers", Event="FOR INSERT")]
public static void PublishersInsertTrigger()
{
//...
}
}
Partial Public Class Triggers
<SqlTrigger(Name:="trig_onpubinsert", Target:="publishers", Event:="FOR INSERT")>
Public Shared Sub PublishersInsertTrigger()
'...
End Sub
End Class
Remarques
La Target propriété est obligatoire.
L’exemple suivant spécifie que le déclencheur est référencé à l’aide du nom trig_onpubinsert
. Le déclencheur est activé en ajoutant de nouvelles données (INSERT
) à la table publishers
.