我與gorms戰鬥了一下:Grails的GORMS找到所有地方集合屬性不爲空
String data = new JSON(Object.executeQuery("from Product p where p.subis not empty"))
工作就好
但是:
String data = new JSON(Product.findAllBySubIsNotEmpty())
不起作用。錯誤
No signature of method: com.path.Object.findAllBySubIsNotEmpty() is applicable for argument types:() values: []
爲清潔代碼的目的我寧願gorms語法到hql查詢,爲什麼這不會工作的任何想法?
也許你的意思是'findAllBySubIsNotNull'? – rmlan 2014-08-27 16:31:12