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)