Browse Source

修改时间过滤

zmm 6 years ago
parent
commit
1b193d10ff
1 changed files with 1 additions and 1 deletions
  1. 1 1
      CZKJ.GBRS2/Logic/PriceAnnouncementLogic.cs

+ 1 - 1
CZKJ.GBRS2/Logic/PriceAnnouncementLogic.cs

@@ -20,7 +20,7 @@ namespace CZKJ.GBRS2.Logic
20 20
             }
21 21
             if(startTime.HasValue&&endTime.HasValue)
22 22
             {
23
-                query = query.Where(x => x.DateTime >= startTime && x.DateTime <= endTime);
23
+                query = query.Where(x => x.DateTime.Month >= startTime.Value.Month && x.DateTime.Month <= endTime.Value.Month);
24 24
             }
25 25
             rowsCount = query.Count();
26 26
             var result = query.Join(DbContext.Set<TypeEntity>(), x => x.Typeofinsuance, y => y.Id, (x, y) => new { x, y.Name }).OrderByDescending(x => x.x.DateTime).Skip((pageIndex - 1) * pageSize).Take(pageSize).ToList();