Entity Framework
- Enable-Migrations: Enables the migration in your project by creating a
Configuration
class. - 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-Migration
command and applies changes to the database schema.