How Migrations Work (Technical Overview)
Migration System Architecture:
EF Core compares your current model (from DbContext) with the snapshot (*ModelSnapshot.cs)
Differences generate migration operations via MigrationBuilder
Each migration is a class inheriting…
