System.Data.Entity.Migrations Namespace
Entity Framework 5.0
Contains classes related to code-based migrations and their configurations.
| Class | Description | |
|---|---|---|
|
DbMigration | Represents the base class for code-based migrations. |
|
DbMigrationsConfiguration | Configuration relating to the use of migrations for a given model. You will typically create a configuration class that derives from DbMigrationsConfiguration(Of TContext) rather than using this class. |
|
DbMigrationsConfiguration(Of TContext) | Represents the configuration relating to the use of migrations for a given model. |
|
DbMigrator | Used to apply existing migrations to a database. This class can be used to upgrade and downgrade to any given migration. To scaffold migrations based on changes to your model, use MigrationScaffolder. |
|
IDbSetExtensions | A set of extension methods for IDbSet(Of TEntity). |
Show: