how to add migrations code example
Example 1: ef remove migration
/*to remove the last migration:*/
/*Visual Studio:*/
Remove-Migration
/*.Net Core CLI:*/
dotnet ef migrations remove
Example 2: entity framework migration
Update-Database
Example 3: enable migration in .net core
dotnet ef database update
Example 4: entity framework migration
dotnet ef migrations add InitialCreate