Entity javítás

This commit is contained in:
2025-03-24 23:29:29 +01:00
parent 2341b186ef
commit ace4130f31
+2 -1
View File
@@ -321,8 +321,9 @@ namespace WorkFlowCheck.BL.Services
try try
{ {
var res = await _dbContext.CheckListHeaders var res = await _dbContext.CheckListHeaders
.Where(w => w.IsEditable && w.UserId == userId) .Where(w => w.IsEditable && w.UserId == userId && w.IsDeleted != true)
.Include(i => i.CheckListRows) .Include(i => i.CheckListRows)
//.ThenInclude(i => i.CheckListTemplateRow)
.AsNoTracking() .AsNoTracking()
.ToListAsync(); .ToListAsync();