add-migration ef core for a specific table code example
Example 1: add migration ef core
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