4

我正在使用带有分页的条件查询。查询工作正常,但 totalCount 大于预期的计数。有没有重复的问题?

def idList =  CS.createCriteria().list (params) {
      projections { distinct ( "id" ) 
          property("date")
          property("id")
      }
      cpNames{
           eq("login",login)    
}
      order("date","desc")
}

   return idList

在 gsp 方面,分页 (idList.totalCount) 是错误的:比我的列表大。

4

1 回答 1

1

listDistinct() 方法不适用于分页选项 maxResult 和 firstResult。如果您需要分页的不同结果,我们目前建议您使用 HQL。您可以从此博客文章中找到更多信息。

http://grails.org/doc/latest/guide/GORM.html#criteria

于 2013-09-04T11:35:00.050 回答