Merge branch 'distributor' into dev

This commit is contained in:
Mikhail Trubnikov
2026-01-20 15:06:38 +10:00
15 changed files with 935 additions and 47 deletions

View File

@@ -36,7 +36,7 @@ namespace PARR.DAL.Services.Implementations
public IQueryable<DateOnly> GetWeekends(DateOnly start, DateOnly end)
{
return EntitySet.Where(t => t.Date >= start && t.Date <= end).Select(t => t.Date);
return EntitySet.Where(t => t.Date >= start && t.Date <= end).AsNoTracking().Select(t => t.Date);
}