EntityFrameworkCore.Migrator.AspNetCore

Toggle theme

Configuration

To configure the tool, you can set the parameters in the configuration method.

builder.Services.AddEntityFrameworkCoreMigrator<DatabaseContext>(options => { options.Title = "Database migrator"; });
NameDescriptionTypeDefault value
TitleTitle that appears in the navbar as a link to the homepage of the migrator tool.string"Migrator"
HomeTitleTitle that appears on the home page.string"Home"
HomeTextText that appears on the home page below the title.stringToo long to display
ShowMigrationstrue if the tool should display the page for managing migrations generated with CLI, false otherwise.booltrue
ShowLiveMigrationtrue if the tool should display the page for generating and running live migrations, false otherwise.booltrue
RestrictToRolesRoles that are allowed to access the UI for migrations management. Ignored if AuthorizationMethod is specified. Either RestrictToRoles or AuthorizationMethod need to be specified in order to access the migrations management UI in non-development environment.IEnumerable<string>?null
AuthorizationMethodCustom method for authorizing the migrations management UI. Either RestrictToRoles or AuthorizationMethod need to be specified in order to access the migrations management UI in non-development environment.Func<HttpContext, Task<bool>>?null
ShouldIgnoreColumnOrderForLiveMigrationstrue if the tool should ignore column order when generating live migrations, false otherwise.boolnull
GetMigrationOperationsMethod that is applied before the collection of MigrationOperation is converted to the collection of MigrationCommand.Too long to displaynull
LiveMigrationTablesTables to include in generating the live database model in live migration. If null or empty, all tables are included.IEnumerable<string>null
LiveMigrationSchemasSchemas to include in generating the live database model in live migration. If null or empty, all schemas are included.IEnumerable<string>null