Using aliases in aggregate functions of criteria queries

13 / Feb / 2012 by Puneet Behl 2 comments

When using criteria queries, many times we encounter a use case where we need to order our result not on any field of domain class but on our result set, in these cases aliases can be used.


In my project, use case was to find most liked products from the domain:
[java]
ProductStat{
Date dateCreated
Product product
}
[/java]
To find the result, the query I used was :

[java]
ProductStat.createCriteria().list() {
projections {
groupProperty("product")
count("product", "totalProducts") // alias totalProducts
}
order("totalProducts", "desc")
}
[/java]


In this way using alias “totalProducts” I was able to order the result according to the count of products.


FOUND THIS USEFUL? SHARE IT

comments (2)

  1. Nita

    Good idea.There are many ways to skin a cat. Here’s another one that’s good for wrciladd queries ( %’). Of course you should validate the data first.def user_params = ‘slug’, ‘category’ def articles = Article.withCriteria for e in params if e.key in user_params ilike e.key, ‘%’ + e.value + ‘%’

    Reply

Leave a Reply

Your email address will not be published. Required fields are marked *