InterviewSolution
Saved Bookmarks
| 1. |
What do you mean by the migration history table in Entity Framework? |
|
Answer» EF6's Migration's history table (__MigrationHistory) is basically a database table that is USED to STORE data about migrations APPLIED to a database by Code First Migrations. A table like this is created when the first migration is applied to the database. Within a GIVEN database, this table contains meta-data describing the EF Code First models' schema versions. When you used the Microsoft SQL Server database, this table was considered a system table in EF5. |
|