How to Add migrations in Visual Studio for Mac

vs 2019 for mac add migration
dotnet tool install --global dotnet-ef
dotnet restore
dotnet ef
dotnet ef migrations add initial
dotnet ef database update
initial is the name of the script you want to add

Read More: