投影プロパティをトリミングしようとしていますが、それができません。
def c = Book.createCriteria()
def books = c.list {
projections {
property ("title")
}
def now = new Date()
between('publishingDate', now-45, now+15)
}
条件の「タイトル」フィールドをトリミングしたいのですが、機能しません。助言がありますか?