有没有办法使用findWhere
和不相等的价值(试图使用它与标准)?
例如
Books.findWhere('sale' : true, 'category': ne('exclude me') )
我有一个可行的解决方案,但想知道是否有一种使用方法,findWhere
我发现它更易于阅读。
def result = Books.createCriteria().get{
eq('sale', true)
ne("category", 'exclude me')
}