From db97e5561268ba3764bedd313a8e17658303ddbb Mon Sep 17 00:00:00 2001 From: Glen Date: Sat, 25 Jun 2022 21:13:17 +0200 Subject: [PATCH] Fix typo in Applying Migrations documentation --- entity-framework/core/managing-schemas/migrations/applying.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entity-framework/core/managing-schemas/migrations/applying.md b/entity-framework/core/managing-schemas/migrations/applying.md index f393aa4eac..9a5d70922f 100644 --- a/entity-framework/core/managing-schemas/migrations/applying.md +++ b/entity-framework/core/managing-schemas/migrations/applying.md @@ -164,7 +164,7 @@ For more information on applying migrations via the command-line tools, see the > [!NOTE] > This feature was introduced in EF Core 6.0. -Migration bundles are single-file executables than can be used to apply migrations to a database. They address some of the shortcomings of the SQL script and command-line tools: +Migration bundles are single-file executables that can be used to apply migrations to a database. They address some of the shortcomings of the SQL script and command-line tools: * Executing SQL scripts requires additional tools. * The transaction handling and continue-on-error behavior of these tools are inconsistent and sometimes unexpected. This can leave your database in an undefined state if a failure occurs when applying migrations.