Entity Framework
- Enable-Migrations: Enables the migration in your project by creating a
Configurationclass. - Add-Migration: Creates a new migration class as per specified name with the
Up()andDown()methods. - Update-Database: Executes the last migration file created by the
Add-Migrationcommand and applies changes to the database schema.















