User475983607 posted
so i need to create paging each page with size 1000 record. any help please ?
Paging and filtering is a very common programming feature with ample code samples a Google search away. A common approach is adding the number of records to return and the requested page to the service method arguments. Then using these
inputs to filter the SQL result set.
Can clarify where you are in the current paging design? Can you post your code?