Closed britnay268 closed 2 months ago
A database needs to be created to allow endpoints to interact with the data within it.
// Added necessary packages to dotnet add package Npgsql.EntityFrameworkCore.PostgreSQL --version 6.0 dotnet add package Microsoft.EntityFrameworkCore.Design --version 6.0 dotnet user-secrets init dotnet user-secrets set "ProjectNameConnectionString" "Host=localhost;Port=5432;Username=postgres;Password=<your_postgresql_password>;Database=CreekRiver"
// Necessary commands for creating the database dotnet ef migrations add InitialCreate dotnet ef database update
Completed - database PR!
Description
A database needs to be created to allow endpoints to interact with the data within it.
Dev Notes
Issue Type