你怎么用NHibernate进行分页?

时间:2008-09-10 17:16:53

标签: .net nhibernate orm pagination

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

8 个答案:

答案 0 :(得分:110)

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

它还有SetMaxResults(int i)方法,表示您希望获得的行数(即您的页面大小)。

例如,此条件对象获取数据网格的前10个结果:

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

答案 1 :(得分:87)

您还可以利用NHibernate中的Futures功能执行查询,以获得总记录数以及单个查询中的实际结果。

示例

 // 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>();

要获取总记录数,请执行以下操作:

int iRowCount = rowCount.Value;

关于期货给你的一个很好的讨论是here

答案 2 :(得分:45)

从NHibernate 3及以上版本,您可以使用QueryOver<T>

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

您可能还想明确订购结果,如下所示:

var pageRecords = nhSession.QueryOver<TEntity>()
            .OrderBy(t => t.AnOrderFieldLikeDate).Desc
            .Skip((PageNumber - 1) * PageSize)
            .Take(PageSize)
            .List();

答案 3 :(得分:31)

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获取打字结果或者每个人都像我一样吗?

由于

答案 4 :(得分:23)

如Ayende在this blog post中讨论的那样使用Linq到NHibernate怎么样?

代码示例:

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

以下是NHibernate团队博客Data Access With NHibernate上的详细帖子,包括实现分页。

答案 5 :(得分:11)

最有可能在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];

答案 6 :(得分:6)

我建议您创建一个特定的结构来处理分页。像(我是一名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()

}

我没有提供实现,但您可以使用@Jon建议的方法。这是一个good discussion供您查看。

答案 7 :(得分:0)

您无需定义2个条件,您可以定义一个条件并将其克隆。 要克隆nHibernate标准,您可以使用简单的代码:

var criteria = ... (your criteria initializations)...;
var countCrit = (ICriteria)criteria.Clone();