command to run migration .net core code example
Example 1: C# aspnet how to run a migration
dotnet ef database update
Example 2: enable migration in .net core
dotnet ef migrations add InitialCreate
dotnet ef database update
dotnet ef migrations add InitialCreate