DbMigrationsConfiguration Class
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.
Configuration relating to the use of migrations for a given model. You will typically create a configuration class that derives from DbMigrationsConfiguration<TContext> rather than using this class.
public class DbMigrationsConfiguration
type DbMigrationsConfiguration = class
Public Class DbMigrationsConfiguration
- Inheritance
-
DbMigrationsConfiguration
- Derived
Constructors
DbMigrationsConfiguration() |
Initializes a new instance of the DbMigrationsConfiguration class. |
Fields
DefaultMigrationsDirectory |
The default directory that migrations are stored in. |
Properties
AutomaticMigrationDataLossAllowed |
Gets or sets a value indicating if data loss is acceptable during automatic migration. If set to false an exception will be thrown if data loss may occur as part of an automatic migration. |
AutomaticMigrationsEnabled |
Gets or sets a value indicating if automatic migrations can be used when migrating the database. |
CodeGenerator |
Gets or sets the code generator to be used when scaffolding migrations. |
CommandTimeout |
Gets or sets the timeout value used for the individual commands within a migration. A null value indicates that the default value of the underlying provider will be used. |
ContextKey |
Gets or sets the string used to distinguish migrations belonging to this configuration from migrations belonging to other configurations using the same database. This property enables migrations from multiple different models to be applied to a single database. |
ContextType |
Gets or sets the derived DbContext representing the model to be migrated. |
MigrationsAssembly |
Gets or sets the assembly containing code-based migrations. |
MigrationsDirectory |
Gets or sets the sub-directory that code-based migrations are stored in. Note that this property must be set to a relative path for a sub-directory under the Visual Studio project root; it cannot be set to an absolute path. |
MigrationsNamespace |
Gets or sets the namespace used for code-based migrations. |
TargetDatabase |
Gets or sets a value to override the connection of the database to be migrated. |
Methods
GetHistoryContextFactory(String) |
Gets the history context factory that is set to be used with a given database provider. |
GetSqlGenerator(String) |
Gets the SQL generator that is set to be used with a given database provider. |
SetHistoryContextFactory(String, Func<DbConnection,String,HistoryContext>) |
Adds a new factory for creating HistoryContext instances to be used for a given database provider. |
SetSqlGenerator(String, MigrationSqlGenerator) |
Adds a new SQL generator to be used for a given database provider. |
Applies to
Entity Framework