如何使用NHibernate进行分页?


107

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

Answers:


111

ICriteria有一个SetFirstResult(int i)方法,该方法指示您希望获取的第一项的索引(基本上是页面中的第一数据行)。

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

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

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

1
无论如何,这几乎就是Linq(至NH)语法的样子-很好。
MotoWilliams

13
重要的是要注意,您将需要执行一个单独的事务来检索总行数,以便呈现您的寻呼机。

1
这将在SQL Server中执行SELECT TOP查询。尝试使用SetFirstResult(1).SetMaxResult(2);
克里斯S

4
那之前的评论是使用NHibernate.Dialect.MsSql2000Dialect而不是NHibernate.Dialect.MsSql2005Dialect
Chris S

IQuery具有相同的功能,因此也可以与HQL一起使用。
goku_da_master 2012年

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;

关于期货给您的好处的讨论在这里


3
这很棒。期货的工作原理完全类似于多标准,而没有多标准的句法复杂性。
DavGarcia

阅读有关期货的文章后,我不知道是否应该对所有数据库查询使用期货...有什么缺点?:)
hakksor 2011年

46

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

.Skip(PageNumber * PageSize)这样,如果页面大小为10,它将永远不会检索前10行。我正在编辑以使公式正确。假设概念,PageNumber不应该是0。它应该是最小的1
阿米特乔希

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获取类型化的结果,或者每个人都像我一样吗?

谢谢



11

最有可能在GridView中,您将要显示一片数据以及与查询匹配的数据总量的总行数(行数)。

您应该使用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

我建议您创建一个特定的结构来处理分页。类似于(我是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建议的方法。这是一个很好的讨论,供您查看。


0

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

var criteria = ... (your criteria initializations)...;
var countCrit = (ICriteria)criteria.Clone();
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.