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