Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,13 @@ public virtual OwnedNavigationSplitTableBuilder ExcludeFromMigrations(bool exclu
/// <param name="modelName">The name of the trigger.</param>
/// <returns>A builder that can be used to configure the database trigger.</returns>
/// <remarks>
/// See <see href="https://aka.ms/efcore-docs-triggers">Database triggers</see> for more information and examples.
/// <para>
/// This method only registers the trigger in the EF model; it does not create the trigger in the database.
/// The trigger must be created separately (for example, by adding trigger DDL to a migration using <c>migrationBuilder.Sql(...)</c>).
/// </para>
/// <para>
/// See <see href="https://aka.ms/efcore-docs-triggers">Database triggers</see> for more information and examples.
/// </para>
/// </remarks>
public virtual TableTriggerBuilder HasTrigger(string modelName)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,13 @@ public virtual OwnedNavigationTableBuilder ExcludeFromMigrations(bool excluded =
/// <param name="modelName">The name of the trigger.</param>
/// <returns>A builder that can be used to configure the database trigger.</returns>
/// <remarks>
/// See <see href="https://aka.ms/efcore-docs-triggers">Database triggers</see> for more information and examples.
/// <para>
/// This method only registers the trigger in the EF model; it does not create the trigger in the database.
/// The trigger must be created separately (for example, by adding trigger DDL to a migration using <c>migrationBuilder.Sql(...)</c>).
/// </para>
/// <para>
/// See <see href="https://aka.ms/efcore-docs-triggers">Database triggers</see> for more information and examples.
/// </para>
/// </remarks>
public virtual TableTriggerBuilder HasTrigger(string modelName)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,13 @@ public virtual SplitTableBuilder ExcludeFromMigrations(bool excluded = true)
/// <param name="modelName">The name of the trigger.</param>
/// <returns>A builder that can be used to configure the database trigger.</returns>
/// <remarks>
/// See <see href="https://aka.ms/efcore-docs-triggers">Database triggers</see> for more information and examples.
/// <para>
/// This method only registers the trigger in the EF model; it does not create the trigger in the database.
/// The trigger must be created separately (for example, by adding trigger DDL to a migration using <c>migrationBuilder.Sql(...)</c>).
/// </para>
/// <para>
/// See <see href="https://aka.ms/efcore-docs-triggers">Database triggers</see> for more information and examples.
/// </para>
/// </remarks>
public virtual TableTriggerBuilder HasTrigger(string modelName)
{
Expand Down
8 changes: 7 additions & 1 deletion src/EFCore.Relational/Metadata/Builders/TableBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,13 @@ public virtual TableBuilder ExcludeFromMigrations(bool excluded = true)
/// <param name="modelName">The name of the trigger.</param>
/// <returns>A builder that can be used to configure the database trigger.</returns>
/// <remarks>
/// See <see href="https://aka.ms/efcore-docs-triggers">Database triggers</see> for more information and examples.
/// <para>
/// This method only registers the trigger in the EF model; it does not create the trigger in the database.
/// The trigger must be created separately (for example, by adding trigger DDL to a migration using <c>migrationBuilder.Sql(...)</c>).
/// </para>
/// <para>
/// See <see href="https://aka.ms/efcore-docs-triggers">Database triggers</see> for more information and examples.
/// </para>
/// </remarks>
public virtual TableTriggerBuilder HasTrigger(string modelName)
{
Expand Down
Loading