In many of my projects including last one I need to user N-Tier architecture for my application. This is very good approach because you can centralize your business logic and have many type of clients (WWW, mobile devices) thanks WCF and REST technology. The other thing is that most of business solutions displays some data in tabular format knows as grids and grid has always one problem: number of records increasing in time. So we need to ask ourselves do we really need to display all the data together to user on one page? Of course not! Such approach is incorrect and not against best practices because its extends the time of response and send a much more data to client. To deal with that problem many developers uses pagination mechanism which is part of ASP.NET (ex. asp:Grid) but such approach is not correct when working with N-Tier architecture and its not supported in any mobile devices.
In my approach I wish to implement all my business logic and services by using Service Factory design pattern for WCF. Because I going to focus only at the pagination mechanism there is no need to add additional classes for accessing an database that is why I going to use mocking to create some data except.
At the beginning take a look at solution high level architecture (picture 1.). The solution contains two separated solution folder. Tests folders contains only one console application project for web service testing purposes. Folder WCF contains following projects:
Now when we know all solution we can focus on details of pagination. For presentation purpose I created one service called UserService with only one method GetUsers. This method returns list of users which will be paginated according to request parameters.
To enable pagination for list some additional implementation had to be introduced (picture 2.). The most important class for that is generic ListRequest<T> which implements a generic interface IRaginationRequest<T>. Those interface has only two int null-able properties which determine number of page to display and number of result per page - by default pagination return first page with maximum 20 results. Because we I use here genetic types in GetUserRequest declaration I simply can declare type of T as User type which is my DTO object.
Now its time to implement service logic for returning paginated list of users. As I mentioned before in this post, I using mocking except of database that is why I create 100 users in for loop with some test properties. After filling the list it`s time for apply pagination mechanism on it. For pagination I`ve created extension generic method called AsPagination which extend IEnumerable interface of T type and takes one generic parameter of type IPaginationRequest. This is quite obvious because in the request (which implements that interface) we pass all required data for pagination. Because pagination function returns value of generic type IPagination and there is no possibility to pass interface by WCF it need to be converted to class type and this explains GetUserResponse structure (Picture 3.).
To fully understand pagination mechanism you must be familiar with IQueryable interface and deferred execution on queries because both are used in the implementation. Pagination mechanism is optimized which means that you get only records which you really requested. For example, if you want to see 10 record on 5th page you need get from database only 10 records. You can achieve this by using Skip and Take LINQ functions and know page size and number.If know both value of these variables you can simply use following LINQ query:
Thank you.
Read more:
In my approach I wish to implement all my business logic and services by using Service Factory design pattern for WCF. Because I going to focus only at the pagination mechanism there is no need to add additional classes for accessing an database that is why I going to use mocking to create some data except.
At the beginning take a look at solution high level architecture (picture 1.). The solution contains two separated solution folder. Tests folders contains only one console application project for web service testing purposes. Folder WCF contains following projects:
- Common: dll with implementation of public interfaces and classes shared across whole solution.
- Contracts: dll with definitions for classes uses as parameters for services methods. According best practices all service methods take 0 or only one parameter(which always derive from BaseRequest class) and returns type of response (which always derive from BaseResponse class).
- DataTransferObjects: dll with types uses in communication in requests and responses. These types implements interfaces from namespaces Common.DTO and database entities also should implements its.
- Namespaces: dll with constans namespaces for services, services contracts, service interfaces and so on.
- ServiceImplementation: dll, core library with implementation of business logic for WCF services where classes implements service contracts.
- ServiceInterfaces: dll, services contracts.
- Services: WCF application, stores .svc files and configuration file (Web.config)
Picture 1. solution high level architecture. |
Code Snippet
- [ServiceContract(Namespace = ConstNamespaces.ServiceRoot, SessionMode = SessionMode.Allowed)]
- public interface IUserService
- {
- [OperationContract]
- GetUsersResponse GetUsers(GetUsersRequest request);
- }
To enable pagination for list some additional implementation had to be introduced (picture 2.). The most important class for that is generic ListRequest<T> which implements a generic interface IRaginationRequest<T>. Those interface has only two int null-able properties which determine number of page to display and number of result per page - by default pagination return first page with maximum 20 results. Because we I use here genetic types in GetUserRequest declaration I simply can declare type of T as User type which is my DTO object.
Picture 2. Structure of a pagination request. |
Picture 3. Structure for a pagination response. |
Now its time to implement service logic for returning paginated list of users. As I mentioned before in this post, I using mocking except of database that is why I create 100 users in for loop with some test properties. After filling the list it`s time for apply pagination mechanism on it. For pagination I`ve created extension generic method called AsPagination which extend IEnumerable interface of T type and takes one generic parameter of type IPaginationRequest. This is quite obvious because in the request (which implements that interface) we pass all required data for pagination. Because pagination function returns value of generic type IPagination and there is no possibility to pass interface by WCF it need to be converted to class type and this explains GetUserResponse structure (Picture 3.).
Code Snippet
- [AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
- [ServiceBehavior(InstanceContextMode = InstanceContextMode.PerSession)]
- public class UserService : IUserService
- {
- public GetUsersResponse GetUsers(GetUsersRequest request)
- {
- List<User> users = new List<User>();
- //Mocking response from DB.
- for (int i = 0; i < 100; i++)
- users.Add(new User()
- {
- Id = Guid.NewGuid(),
- Email = string.Format("test{0}.test.com", i),
- FirstName = string.Format("Name_For_User_{0}", i),
- LastName = string.Format("Last_Name_For_User_{0}", i),
- });
- var result = users.AsPagination<User>(request);
- return new GetUsersResponse() { ResultList = new Pagination<User>(result) };
- }
- }
To fully understand pagination mechanism you must be familiar with IQueryable interface and deferred execution on queries because both are used in the implementation. Pagination mechanism is optimized which means that you get only records which you really requested. For example, if you want to see 10 record on 5th page you need get from database only 10 records. You can achieve this by using Skip and Take LINQ functions and know page size and number.If know both value of these variables you can simply use following LINQ query:
Code Snippet
- Query.Skip(numberToSkip).Take(PageSize);
Picture 4. Pagination mechanism overview. |
At this stage there is no sorting and ordering in pagination list because it will be introduced in further post.
Full projects source code is free available here.
Thank you.
Read more:
- Deferred query execution: http://msdn.microsoft.com/en-us/library/bb738633(v=vs.100).aspx
- WCF Service Factory: http://msdn.microsoft.com/en-us/magazine/cc163481.aspx