想象我有以下查詢:如何以幾乎相同的標準避免冗餘?
def result = Test.createCriteria().list(params) {
// image here a lot of assocs, criterias, ...
}
在您需要查詢的行數以上,例如許多情況下,列出許多控制器的操作。
def resultTotal = Test.createCriteria().list(params) {
// Imagine here a lot of assocs, criterias, ...
// Change to the criteria above is only the projection block
projections { rowCount() }
}
我該如何避免這種情況?