你如何使用NHibernate进行分页?

例如,我想在ASP.NET网页中填充gridview控件,只显示显示行数所需的数据。 NHibernate如何支持这个?

ICriteria有一个SetFirstResult(int i)方法,它表示你希望得到的第一个项目的索引(基本上是你页面中的第一个数据行)。

它也有一个SetMaxResults(int i)方法,它表示你希望得到的行数(即你的页面大小)。

例如,这个标准对象获得数据网格的前10个结果:

 criteria.SetFirstResult(0).SetMaxResults(10); 

您也可以利用NHibernate中的Futures特性来执行查询,以获得总logging数以及单个查询中的实际结果。

  // Get the total row count in the database. var rowCount = this.Session.CreateCriteria(typeof(EventLogEntry)) .Add(Expression.Between("Timestamp", startDate, endDate)) .SetProjection(Projections.RowCount()).FutureValue<Int32>(); // Get the actual log entries, respecting the paging. var results = this.Session.CreateCriteria(typeof(EventLogEntry)) .Add(Expression.Between("Timestamp", startDate, endDate)) .SetFirstResult(pageIndex * pageSize) .SetMaxResults(pageSize) .Future<EventLogEntry>(); 

要获得总logging数,请执行以下操作:

 int iRowCount = rowCount.Value; 

期货给你的一个很好的讨论就在这里 。

在NHibernate 3中,您可以使用QueryOver

 var pageRecords = nhSession.QueryOver<TEntity>() .Skip(PageNumber * PageSize) .Take(PageSize) .List(); 

你也可以像这样明确地命令你的结果:

 var pageRecords = nhSession.QueryOver<TEntity>() .OrderBy(t => t.AnOrderFieldLikeDate).Desc .Skip(PageNumber * PageSize) .Take(PageSize) .List(); 
 public IList<Customer> GetPagedData(int page, int pageSize, out long count) { try { var all = new List<Customer>(); ISession s = NHibernateHttpModule.CurrentSession; IList results = s.CreateMultiCriteria() .Add(s.CreateCriteria(typeof(Customer)).SetFirstResult(page * pageSize).SetMaxResults(pageSize)) .Add(s.CreateCriteria(typeof(Customer)).SetProjection(Projections.RowCountInt64())) .List(); foreach (var o in (IList)results[0]) all.Add((Customer)o); count = (long)((IList)results[1])[0]; return all; } catch (Exception ex) { throw new Exception("GetPagedData Customer da hata", ex); } } 

当分页数据有另一种方式从MultiCriteria获得input结果,或者每个人都像我一样吗?

谢谢

如何使用Linq的NHibernate在这篇博文Ayende讨论?

代码示例:

 (from c in nwnd.Customers select c.CustomerID) .Skip(10).Take(10).ToList(); 

这里是NHibernate团队博客的一篇关于NHibernate的数据访问的详细文章,包括实现分页。

最有可能在GridView中,您将希望显示一个数据片加上与您的查询匹配的总数据量的总行数(rowcount)。

您应该使用MultiQuery在一次调用中将Select count(*)查询和.SetFirstResult(n).SetMaxResult(m)查询发送到数据库。

请注意,结果将是一个包含2个列表的列表,一个用于数据切片,一个用于计数。

例:

 IMultiQuery multiQuery = s.CreateMultiQuery() .Add(s.CreateQuery("from Item i where i.Id > ?") .SetInt32(0, 50).SetFirstResult(10)) .Add(s.CreateQuery("select count(*) from Item i where i.Id > ?") .SetInt32(0, 50)); IList results = multiQuery.List(); IList items = (IList)results[0]; long count = (long)((IList)results[1])[0]; 

我build议你创build一个特定的结构来处理分页。 像(我是一个Java程序员,但应该很容易映射):

 public class Page { private List results; private int pageSize; private int page; public Page(Query query, int page, int pageSize) { this.page = page; this.pageSize = pageSize; results = query.setFirstResult(page * pageSize) .setMaxResults(pageSize+1) .list(); } public List getNextPage() public List getPreviousPage() public int getPageCount() public int getCurrentPage() public void setPageSize() } 

我没有提供实现,但是可以使用@Jonbuild议的方法。 这是一个很好的讨论,让你看看。