How to order by more than one field in Grails?

前端 未结 10 1962
萌比男神i
萌比男神i 2020-12-13 09:03

Is there a way to get a list ordered by two fields, say last and first names?

I know .listOrderByLastAndFirst and .list(sort:\'last, first\')

10条回答
  •  萌比男神i
    2020-12-13 09:42

    MyDomain.findAll(sort: ['first': 'desc','last':'desc'])
    

    works with grails-datastore-gorm:6.0.3

提交回复
热议问题