games = Game.where {
categories.categoryName == currentCategory
platform.platformName == chosenPlatform
status == "okay"
}.list(sort: 'gameTitle', order: "asc", max: max, offset: offset)
所以在這裏我選它的名字遊戲,問題是大寫字母至上所以三角洲來自布拉沃這應該是反過來了。你如何在Grails中做到這一點?Grails的排序忽略大小寫敏感
嗨,我不能在Grails文檔中看到ORDER BY,你如何實現它?我做,列表(排序:ORDER BY UPPER(game_title),order:「asc」,max:max,offset:offset)? –