diff --git a/IRaCIS.Core.Application/Service/Reading/Segment/SegmentationService.cs b/IRaCIS.Core.Application/Service/Reading/Segment/SegmentationService.cs index 82af5ef1a..341682d80 100644 --- a/IRaCIS.Core.Application/Service/Reading/Segment/SegmentationService.cs +++ b/IRaCIS.Core.Application/Service/Reading/Segment/SegmentationService.cs @@ -127,7 +127,7 @@ public class SegmentationService(IRepository _segmentationReposito .WhereIf(inQuery.Id != null, x => x.Id == inQuery.Id) .ProjectTo(_mapper.ConfigurationProvider); - var pageList = await segmentQueryable.ToPagedListAsync(inQuery); + var pageList = await segmentQueryable.ToPagedListAsync(inQuery,nameof(SegmentView.SegmentMumber)); return pageList; }