Added unit tests for API and Web App

Also updated backend to use .NET6
This commit is contained in:
2023-03-06 21:59:17 -06:00
parent efb22aa0af
commit 771b63f6c4
14 changed files with 971 additions and 262 deletions

View File

@ -9,6 +9,8 @@ namespace YABA.Data.Context
{
public class YABAReadWriteContext : YABABaseContext
{
public YABAReadWriteContext() : base() { }
public YABAReadWriteContext(DbContextOptions<YABABaseContext> options) : base(options)
{
ChangeTracker.QueryTrackingBehavior = QueryTrackingBehavior.TrackAll;