Database
Configure the database to work with the apps built with the bit project templates.
Connection String
You can change connection string at appsettings.json file in Server.Api project.
If you have selected 'Other' for the database parameter while building the project, install appropriate EntityFrameworkCore package for your intended database,
and then in the Api\Startup\Services.cs file, perform the relevant settings for the related package in the services.AddDbContext section.
Migration
Set Server.Api as the Startup Project in solution explorer and also set it as the Default Project in Package Manager Console and run the following commands:
Add-Migration InitialMigration
Update-Database
Note: If you encounter any problem in running these commands, first make sure that the solution builds successfully.
Or open a terminal in your Api project directory and run followings:
dotnet ef migrations add InitialMigration
dotnet ef database update