Configuration
To configure the tool, you can set the parameters in the configuration method.
builder.Services.AddEntityFrameworkCoreMigrator<DatabaseContext>(options =>
{
options.Title = "Database migrator";
});
Name | Description | Type | Default value |
---|---|---|---|
Title | Title that appears in the navbar as a link to the homepage of the migrator tool. | string | "Migrator" |
HomeTitle | Title that appears on the home page. | string | "Home" |
HomeText | Text that appears on the home page below the title. | string | Too long to display |
ShowMigrations | true if the tool should display the page for managing migrations generated with CLI, false otherwise. | bool | true |
ShowLiveMigration | true if the tool should display the page for generating and running live migrations, false otherwise. | bool | true |
RestrictToRoles | Roles 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 |
AuthorizationMethod | Custom 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 |
ShouldIgnoreColumnOrderForLiveMigrations | true if the tool should ignore column order when generating live migrations, false otherwise. | bool | null |
GetMigrationOperations | Method that is applied before the collection of MigrationOperation is converted to the collection of MigrationCommand . | Too long to display | null |
LiveMigrationTables | Tables to include in generating the live database model in live migration. If null or empty, all tables are included. | IEnumerable<string> | null |
LiveMigrationSchemas | Schemas to include in generating the live database model in live migration. If null or empty, all schemas are included. | IEnumerable<string> | null |