Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Migration.cs #23551

Merged
merged 1 commit into from
Dec 2, 2020
Merged
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
4 changes: 2 additions & 2 deletions src/EFCore.Relational/Migrations/Migration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ protected virtual void BuildTargetModel([NotNull] ModelBuilder modelBuilder)
/// previous migration so that it is up-to-date with regard to this migration.
/// </para>
/// <para>
/// This method must be overridden in each class the inherits from <see cref="Migration" />.
/// This method must be overridden in each class that inherits from <see cref="Migration" />.
/// </para>
/// </summary>
/// <param name="migrationBuilder"> The <see cref="MigrationBuilder" /> that will build the operations. </param>
Expand All @@ -111,7 +111,7 @@ protected virtual void BuildTargetModel([NotNull] ModelBuilder modelBuilder)
/// this migration so that it returns to the state that it was in before this migration was applied.
/// </para>
/// <para>
/// This method must be overridden in each class the inherits from <see cref="Migration" /> if
/// This method must be overridden in each class that inherits from <see cref="Migration" /> if
/// both 'up' and 'down' migrations are to be supported. If it is not overridden, then calling it
/// will throw and it will not be possible to migrate in the 'down' direction.
/// </para>
Expand Down