NHibernate - Eager Fetch and Pagination in one query

Let’s consider these mappings: <class name="Item" table="Item"> <id name="Id" column="Id" type="int"> <generator class="native" /> </id> <property name=&


WPF: a generic ‘server-side’ pagination data provider

Sooner or later everyone face the problem of having to deal with paginated data in WPF, paginating a collection is quite easy and you can refer to one of my previous posts too (http://www.primordialcode.com/index.php/2008/09/08/silverlight-a-ge...


Silverlight Pagination Control – bug fixed

There were a couple of bugs in how the number of pages were computed, the problem is now solved and the solution is updated, see the article at: Silverlight: a generic Pagination Control I start to believe that I really have to test my contr...


Silverlight: a generic Pagination Control

The default silverlight controls like DataGrid and ItemsControl come without a default paging mechanism like we have in ASP.NET, so this article will be forcused in developing a generic Pager Control in Silverlight. This is what we want to obta...