SqliteMigrationBuilderExtensions.IsSqlite(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 SQLite provider.
public static bool IsSqlite (this Microsoft.EntityFrameworkCore.Migrations.MigrationBuilder migrationBuilder);
static member IsSqlite : Microsoft.EntityFrameworkCore.Migrations.MigrationBuilder -> bool
<Extension()>
Public Function IsSqlite (migrationBuilder As MigrationBuilder) As Boolean
Parameters
- migrationBuilder
- MigrationBuilder
The migrationBuilder from the parameters on Up(MigrationBuilder) or Down(MigrationBuilder).
Returns
true
if SQLite is being used; false
otherwise.
Remarks
See Accessing SQLite 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