Hi DenisK,
Thank you for your response.
Here's what I need to do:
I have one table named "Services" which has two columns, [ServiceId] int and [ServiceName] varchar.
I need to bind this to a grid but I need to have a row that has zero(0) for ServiceId and "All Services" for ServiceName.
I used to do this in stored procedure by a sample query below:
SELECT 0 AS [ServiceId], 'All Services' AS [ServiceName]
UNION
SELECT ServiceId, ServiceName FROM Services
this would result to:
ServiceId ServiceName
0 All Services
1 Service1
2 Service2
3 Service3
.....
I would like to put a paging in my results to minimize traffic when loading all results.
Thanks.