|
@@ -13,11 +13,11 @@ namespace CZKJ.GBRS2.Logic
|
13
|
13
|
{
|
14
|
14
|
public IList<PriceAnnouncementEntity> GetTableList(int? typeId, int pageIndex, int pageSize, out int rowsCount)
|
15
|
15
|
{
|
16
|
|
- var query = DbContext.Set<PriceAnnouncementEntity>();
|
17
|
|
- //if (typeId.HasValue)
|
18
|
|
- //{
|
19
|
|
- // query = query.Where(x => x.Typeofinsuance == typeId);
|
20
|
|
- //}
|
|
16
|
+ IQueryable<PriceAnnouncementEntity> query = DbContext.Set<PriceAnnouncementEntity>();
|
|
17
|
+ if (typeId.HasValue)
|
|
18
|
+ {
|
|
19
|
+ query = query.Where(x => x.Typeofinsuance == typeId);
|
|
20
|
+ }
|
21
|
21
|
rowsCount = query.Count();
|
22
|
22
|
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();
|
23
|
23
|
return result.Select(x => new PriceAnnouncementEntity
|
|
@@ -29,8 +29,6 @@ namespace CZKJ.GBRS2.Logic
|
29
|
29
|
DayInterestRate = x.x.DayInterestRate,
|
30
|
30
|
YearInterestRate = x.x.YearInterestRate,
|
31
|
31
|
}).ToList();
|
32
|
|
- // rowsCount = 10;
|
33
|
|
- //return new List<PriceAnnouncementEntity>();
|
34
|
32
|
}
|
35
|
33
|
}
|
36
|
34
|
}
|