fix query in DrillFlowChartService.GetAllAsync()

This commit is contained in:
Фролов 2021-11-02 17:50:43 +05:00
parent fdef85a291
commit 647bb3b106

View File

@ -27,7 +27,7 @@ namespace AsbCloudInfrastructure.Services
{ {
var entities = await (from p in db.DrillFlowChart var entities = await (from p in db.DrillFlowChart
where p.IdWell == idWell && where p.IdWell == idWell &&
p.LastUpdate >= updateFrom p.LastUpdate > updateFrom
orderby p.DepthStart, p.Id orderby p.DepthStart, p.Id
select p) select p)
.ToListAsync(token) .ToListAsync(token)