What problem does it solve?
Migrations and dependency or .NET version upgrades often fail in production because they are applied without review, lack a rollback plan, and skip verification steps.
Core Features & Use Cases
- EF Core migration safety workflow: review generated SQL via idempotent migration scripts, watch for data-loss operations, and verify after applying.
- Rollback-first operational guidance: provides explicit rollback commands and a “remove failed migration” strategy when something goes wrong.
- Incremental NuGet and .NET upgrade process: updates packages or target frameworks one change at a time, with build-and-test checkpoints to isolate breakages.
- Use case: You need to rename a column and add an index on a large table while updating packages; this skill helps you script, review, apply, test, and roll back safely.
Quick Start
Ask the AI to give you a safe step-by-step EF Core and NuGet migration workflow for your repo and include the exact verification and rollback steps.