go to project root dir and run these commands
dotnet tool install --global dotnet-ef
dotnet add package Microsoft.EntityFrameworkCore.Design
dotnet ef migrations add InitialCreate
dotnet ef database update
connection string will be like this
"ConnectionStrings": {
"database": "server=.;database=low2high;integrated security=true;TrustServerCertificate=True"
}