From ace4130f3110c60b6d4d4292ae0320d4b34c5ade Mon Sep 17 00:00:00 2001 From: ivanszabo Date: Mon, 24 Mar 2025 23:29:23 +0100 Subject: [PATCH] =?UTF-8?q?Entity=20jav=C3=ADt=C3=A1s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/WorkFlowCheck.BL/Services/SyncService.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/WorkFlowCheck.BL/Services/SyncService.cs b/src/WorkFlowCheck.BL/Services/SyncService.cs index 31e7133..6dd7832 100644 --- a/src/WorkFlowCheck.BL/Services/SyncService.cs +++ b/src/WorkFlowCheck.BL/Services/SyncService.cs @@ -321,8 +321,9 @@ namespace WorkFlowCheck.BL.Services try { 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) + //.ThenInclude(i => i.CheckListTemplateRow) .AsNoTracking() .ToListAsync();