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")