For example, I want to populate a gridview control in an ASP.NET web page with only the data necessary for the # of rows displayed. How can NHibernate support this?
|
7
|
|
|
|
|
|
ICriteria has a SetFirstResult(int i) method, which indicates the index of the first item that you wish to get (basically the first data row in your page) and SetMaxResult(int i) which indicates the number of rows you wish to get (e.g., your page size). For example, this criteria object gets the first 10 results of your data grid:
|
||||||||||||||||
|
|
|
How about using Linq to NHibernate as discussed in this blog post by Ayende? Code Sample:
And here is a detailed post by the NHibernate team blog on Data Access With NHibernate including implementing paging. |
|||
|
|
|
|
I suggest that you create a specific structure to deal with pagination. Something like (I'm a Java programmer, but that should be easy to map):
I didn't put implementation, but you could use the methods suggested by @Jon. Here's a good discution for you to take a look. |
||
|
|
|
|
Note linq to Nhibernate is in the contrib package and not included in NHibernate 2.0 release |
||
|
|
|
|
Most likely in a GridView you will want to show a slice of data plus the total number of rows (rowcount) of the total amount of data that matched your query. You should use a MultiQuery to send both the Select count(*) query and .SetFirstResult(n).SetMaxResult(m) queries to your database in a single call. Note the result will be a list that holds 2 lists, one for the data slice and one for the count. Example:
|
||
|
|
|
|
When paging data is there another way to get typed result from MultiCriteria or everyone does the same just like me ? Thanks |
||
|
|
|
|
I liked all the other solutions but I really prefere the one I built, the code is more clear to understand and improve (there is a lot to improve). Some Explanations: EntityCollection is a collection object with the List heritage. I had to convert hibernate Ilist to my list because the EntityCollection follows the approach of intelligent messages. I do avoid too much parameters so I prefer user an intelligent property TotalItems instead of using an output parameter for count all the records. Also, I do not approve code with declare variables everywhere, it doesn't seem software engeneering. Keep variable declaration at one single point is easier to understand the whole code (for you and everyone). When you have to declare variable inside your algorithm, it is time to split code and responsabilities.
|
||
|
|
|
|
You can also take advantage of the Futures feature in NHibernate to execute the query to get the total record count as well as the actual results in a single query. Example
To get the total record count, you do the following:
A good discussion of what Futures give you is here. |
||
|
|
