From 647bb3b106093a6018abb6fbcfc15d9a8786a6c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A4=D1=80=D0=BE=D0=BB=D0=BE=D0=B2?= Date: Tue, 2 Nov 2021 17:50:43 +0500 Subject: [PATCH] fix query in DrillFlowChartService.GetAllAsync() --- AsbCloudInfrastructure/Services/DrillFlowChartService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AsbCloudInfrastructure/Services/DrillFlowChartService.cs b/AsbCloudInfrastructure/Services/DrillFlowChartService.cs index 30d318a9..6164038d 100644 --- a/AsbCloudInfrastructure/Services/DrillFlowChartService.cs +++ b/AsbCloudInfrastructure/Services/DrillFlowChartService.cs @@ -27,7 +27,7 @@ namespace AsbCloudInfrastructure.Services { var entities = await (from p in db.DrillFlowChart where p.IdWell == idWell && - p.LastUpdate >= updateFrom + p.LastUpdate > updateFrom orderby p.DepthStart, p.Id select p) .ToListAsync(token)