IConventionEntityTypeBuilder.HasTrigger(String, Boolean) Method

Definition

Configures a database trigger when targeting a relational database.

public Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionTriggerBuilder? HasTrigger (string modelName, bool fromDataAnnotation = false);
abstract member HasTrigger : string * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionTriggerBuilder
Public Function HasTrigger (modelName As String, Optional fromDataAnnotation As Boolean = false) As IConventionTriggerBuilder

Parameters

modelName
String

The name of the trigger.

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Returns

The same builder instance if the check constraint was configured, null otherwise.

Remarks

See Database triggers for more information and examples.

Applies to