/src
- ApplicationCore
- Infrastructure
- Web
/tests
- UnitTests
/ApplicationCore
Install-Package Ardalis.Specification
/Infrastructure
Install-Package Microsoft.EntityFrameworkCore
Install-Package Microsoft.AspNetCore.Identity.EntityFrameworkCore
Install-Package Npgsql.EntityFrameworkCore.PostgreSQL
Install-Package Ardalis.Specification.EntityFrameworkCore
/Web
Install-Package Npgsql.EntityFrameworkCore.PostgreSQL
/UnitTests
Install-Package Moq
/Infrastructure
Add-Migration IdentityInitialCreate -Context AppIdentityDbContext -OutputDir "Identity\Migrations"
Update-Database -context AppIdentityDbContext
Add-Migration BagStoreInitialCreate -Context BagStoreContext -OutputDir "Data\Migrations"
Update-Database -context BagStoreContext