Using Paging in WCF Data Services
Join the DZone community and get the full member experience.
Join For FreeOne of the mechanisms which
were provided in WCF Data Services from
the start was client side paging. In the new release of
WCF Data Services we also get a server
side paging and this will be addressed in this post.
WCF Data Services Client Side Paging
From the early days
of WCF Data Services we could achieve paging on
the client side using the $top and $skip
query parameters. For example the following URI for a data
service will bring the 11-20 courses which were requested:
The problem starts when you expose resources with a lot of items. Lets say that we have 10000 courses in our course library. The following URI will bring to the client all of them:
Running this request will decrease the amount of clients for the service since it will take ages for the query to return. So what can we do? Use server side paging instead.WCF Data Services Server Side Paging
So how can we limit our returning result set to the client? we can use a new feature of WCF Data Services. In order to create a server side paging behavior all we need to do is to configure the service to return some portion of data. We will use the new method of the DataServiceConfiguration class which is called SetEntitySetPageSize for each entity set or for all of them at once (using * ). The following code create server side paging for all the entity sets exposed by the data service to return only 10 items at once:
public class SchoolDataService : DataService<SchoolEntities>
{
public static void InitializeService(DataServiceConfiguration config)
{
config.SetEntitySetAccessRule("*", EntitySetRights.AllRead);
config.SetEntitySetPageSize("*", 10);
config.DataServiceBehavior.MaxProtocolVersion = DataServiceProtocolVersion.V2;
}
}
When I use the service now with a URI to retrieve all the courses I will
get only the first ten courses. Also as you can see in the figure
we
get a link at the bottom that leads us the next ten results:
and the link itself is written as:
http://localhost:8322/SchoolDataService.svc/Courses?$skiptoken=4041
Summary
In the new release of WCF Data Services we get a new paging feature which enable server side paging. Using this method or combining it with client side paging extend the capabilities of WCF Data Services. The use of the server side paging is very easy – just configure the service. In the post I showed an example of how you can achieve that behavior.
Published at DZone with permission of Gil Fink, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Trending
-
A Complete Guide to AWS File Handling and How It Is Revolutionizing Cloud Storage
-
How To Check IP Addresses for Known Threats and Tor Exit Node Servers in Java
-
Observability Architecture: Financial Payments Introduction
-
VPN Architecture for Internal Networks
Comments