| name | ef-protocol |
| description | Mandatory rule for EF Core migrations and database updates. |
EF Core Protocol Skill (BackEnd)
Always follow this protocol whenever the DbContext or domain entities are modified in C#.
Action Requirement
At the end of every response where data models have changed, you MUST provide the following block:
🛠️ Comandos para Package Manager Console (PMC)
Ejecuta estos comandos en orden desde la raíz de la solución:
-
Crear la migración:
Add-Migration [NombreDescriptivo] -Project Data -StartupProject WebAPI
-
Aplicar los cambios a la base de datos:
Update-Database -Project Data -StartupProject WebAPI