Run this command to create migration
dotnet ef migrations add [migration_name] --verbose --project QuizApp.Database --startup-project QuizApp
Run this to apply migration
dotnet ef database update --verbose --project QuizApp.Database --startup-project QuizApp
Run this to create or update api client
dotnet run --generateclients true --project QuizApp