add migration in entity framework core code example
Example 1: add migration ef core
dotnet ef migrations add InitialCreate
Example 2: add migration ef core
dotnet ef database update
Example 3: package manager console add migration
add-migration MyFirstMigration
Update-Database