SqlServerMigrationBuilderExtensions.IsSqlServer(MigrationBuilder) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns true
if the database provider currently in use is the SQL Server provider.
public static bool IsSqlServer (this Microsoft.EntityFrameworkCore.Migrations.MigrationBuilder migrationBuilder);
static member IsSqlServer : Microsoft.EntityFrameworkCore.Migrations.MigrationBuilder -> bool
<Extension()>
Public Function IsSqlServer (migrationBuilder As MigrationBuilder) As Boolean
Parameters
- migrationBuilder
- MigrationBuilder
The migrationBuilder from the parameters on Up(MigrationBuilder) or Down(MigrationBuilder).
Returns
true
if SQL Server is being used; false
otherwise.
Remarks
See Accessing SQL Server and Azure SQL databases with EF Core for more information and examples.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Entity Framework