IConventionEntityType.AddTrigger(String, Boolean) Method

Definition

Creates a new trigger with the given name on entity type. Throws an exception if a trigger with the same name exists on the same entity type.

public Microsoft.EntityFrameworkCore.Metadata.IConventionTrigger? AddTrigger (string name, bool fromDataAnnotation = false);
abstract member AddTrigger : string * bool -> Microsoft.EntityFrameworkCore.Metadata.IConventionTrigger
Public Function AddTrigger (name As String, Optional fromDataAnnotation As Boolean = false) As IConventionTrigger

Parameters

name
String

The trigger name.

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Returns

The trigger.

Applies to