Skip to content

CSharpFiasco/WarehouseEngine

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

84 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Markdown File

Database-first solutions assume the existence of a database.

This is useful when trying to build an application based off of an existing database, for example, when rewriting an application or when performance is crucial, etc.

Please deploy this the database project of your choice then place the following in a appsettings.local.json file inside the Api project.

{
  "ConnectionStrings": {
    "WarehouseEngine": "Server=(localdb)\\MSSQLLocalDB;Database=WarehouseEngine;Trusted_Connection=True"
  }
}

Because we use EF Core, a repo layer does not faciliate testing since we can test against MSSQLLOCALDB. This blurs the line of unit and integration tests, but provides value quicker.

May need to do following commands

dotnet dev-certs https --clean

dotnet dev-certs https --trust

dotnet dev-certs https --check

todo

  1. Add global exception handling

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published