Files
TekH 5b865c0442 fix(sql): change query execution to use ToList before FirstOrDefault
- Change from FirstOrDefaultAsync to ToListAsync + FirstOrDefault
- Ensures proper query execution for both EF6 (.NET Framework 4.8) and EF Core (.NET 8.0)
- Prevents potential query execution issues
- Add using System.Linq directive
2026-08-04 16:34:04 +02:00
..