Where do we put the logic for paging and sorting data in an asp.net repository pattern project?
Should it go in the service layer or put it in the controller and have th
The repository should return a 'PageableResultSet', or something like that, which is responsible for the paging.