SlipsStatService.GetAllAsync() remove filter wellOperation by drilling only

This commit is contained in:
ngfrolov 2024-01-23 10:01:33 +05:00
parent c1729d06c7
commit 12b942b995
Signed by: ng.frolov
GPG Key ID: E99907A0357B29A7

View File

@ -52,7 +52,6 @@ public class SlipsStatService : ISlipsStatService
var factWellOperationsQuery = db.WellOperations
.Where(o => idsWells.Contains(o.IdWell))
.Where(o => o.IdType == 1)
.Where(o => WellOperationCategory.MechanicalDrillingSubIds.Contains(o.IdCategory))
.Include(o => o.WellSectionType)
.AsNoTracking();