RelationalTriggerBuilderExtensions.HasTableSchema Method

Definition

Sets the schema of the table on which this trigger is defined.

public static Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionTriggerBuilder? HasTableSchema (this Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionTriggerBuilder triggerBuilder, string? schema, bool fromDataAnnotation = false);
static member HasTableSchema : Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionTriggerBuilder * string * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionTriggerBuilder
<Extension()>
Public Function HasTableSchema (triggerBuilder As IConventionTriggerBuilder, schema As String, Optional fromDataAnnotation As Boolean = false) As IConventionTriggerBuilder

Parameters

triggerBuilder
IConventionTriggerBuilder

The builder for the trigger being configured.

schema
String

The schema of the table on which this trigger is defined.

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Returns

The same builder instance if the configuration was applied, null otherwise.

Applies to