Files
YABA/YABA.Data/Context/YABAReadOnlyContext.cs
Carl Tibule 771b63f6c4 Added unit tests for API and Web App
Also updated backend to use .NET6
2023-03-08 21:34:43 -06:00

14 lines
388 B
C#

using Microsoft.EntityFrameworkCore;
namespace YABA.Data.Context
{
public class YABAReadOnlyContext : YABABaseContext
{
public YABAReadOnlyContext() : base() { }
public YABAReadOnlyContext(DbContextOptions<YABABaseContext> options) : base(options)
{
ChangeTracker.QueryTrackingBehavior = QueryTrackingBehavior.NoTracking;
}
}
}