1

我正在尝试修剪投影属性,但它不允许我这样做。

def c = Book.createCriteria()
def books = c.list { 
    projections {
        property ("title")
    }
    def now = new Date()
    between('publishingDate', now-45, now+15)
}

我想修剪标准中的“标题”字段,但它不起作用。有什么建议么?

4

1 回答 1

2

这将在 grails 2.2 中使用sqlProjection

projections {
    sqlProjection 'trim(title) as title', ['title'], [java.sql.Types.VARCHAR]
}
于 2012-11-06T22:51:59.407 回答