From eb88a5115a8e61a22774ef1a1e53967f5eb320b7 Mon Sep 17 00:00:00 2001 From: Kirk Larkin <6025110+serpent5@users.noreply.github.com> Date: Mon, 15 Jun 2020 17:49:07 +0100 Subject: [PATCH] Fix up wording when discussing MigrationBuilder.ActiveProvider (#2448) --- entity-framework/core/managing-schemas/migrations/providers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entity-framework/core/managing-schemas/migrations/providers.md b/entity-framework/core/managing-schemas/migrations/providers.md index 49f6f4372c..31e2d9281b 100644 --- a/entity-framework/core/managing-schemas/migrations/providers.md +++ b/entity-framework/core/managing-schemas/migrations/providers.md @@ -65,7 +65,7 @@ Id = table.Column(nullable: false) .Annotation("Sqlite:Autoincrement", true), ``` -If operations can only be applied on one provider (or they're differently between providers), use the `ActiveProvider` property to tell which provider is active. +If operations can be applied only for one provider, or they're different between providers, use the `ActiveProvider` property to determine which provider is active: ``` csharp if (migrationBuilder.ActiveProvider == "Microsoft.EntityFrameworkCore.SqlServer")