下一个代码有效:
self query1 = DomainClassExample.findAllByPropertyInList("hi","bye")
但是如果我添加Not,则动态查找器不存在(它确实存在:检查答案):
self query2 = DomainClassExample.findAllByPropertyNotInList("hi","bye")
我想获取所有没有属性“hi”或“bye”的 DomainClassExample。有没有为此目的的动态查找器?我应该使用 Where 查询。如何?