【发布时间】:2016-02-17 20:46:16
【问题描述】:
games = Game.where {
categories.categoryName == currentCategory
platform.platformName == chosenPlatform
status == "okay"
}.list(sort: 'gameTitle', order: "asc", max: max, offset: offset)
所以我在这里按游戏名称对游戏进行排序,问题是大写字母在前,所以 Delta 在 bravo 之前,应该反过来。你如何在 grails 中做到这一点?
【问题讨论】:
标签: grails grails-orm