System.Data.Entity.Migrations.Model Namespace
Entity Framework 5.0
Provides models and related operations used by migration code generators.
| Class | Description | |
|---|---|---|
|
AddColumnOperation | Represents a column being added to a table. |
|
AddForeignKeyOperation | Represents a foreign key constraint being added to a table. |
|
AddPrimaryKeyOperation | Represents adding a primary key to a table. |
|
AlterColumnOperation | Represents altering an existing column. |
|
ColumnModel | Represents information about a column. |
|
CreateIndexOperation | Represents creating a database index. |
|
CreateTableOperation | Represents creating a table. |
|
DeleteHistoryOperation | Represents deleting a new record from the migrations history table. The migrations history table is used to store a log of the migrations that have been applied to the database. |
|
DropColumnOperation | Represents a column being dropped from a table. |
|
DropForeignKeyOperation | Represents a foreign key constraint being dropped from a table. |
|
DropIndexOperation | Represents dropping an existing index. |
|
DropPrimaryKeyOperation | Represents dropping a primary key from a table. |
|
DropTableOperation | Represents dropping an existing table. |
|
ForeignKeyOperation | Base class for changes that affect foreign key constraints. |
|
HistoryOperation | Common base class for operations that affect the migrations history table. The migrations history table is used to store a log of the migrations that have been applied to the database. |
|
IndexOperation | Common base class for operations affecting indexes. |
|
InsertHistoryOperation | Represents inserting a new record into the migrations history table. The migrations history table is used to store a log of the migrations that have been applied to the database. |
|
MigrationOperation | Represents an operation to modify a database schema. |
|
MoveTableOperation | Represents moving a table from one schema to another. |
|
PrimaryKeyOperation | Common base class to represent operations affecting primary keys. |
|
RenameColumnOperation | Represents renaming an existing column. |
|
RenameTableOperation | Represents renaming an existing table. |
|
SqlOperation | Represents a provider specific SQL statement to be executed directly against the target database. |
Show: