MyEntity.findAllByNameNotLike('bad%')
- by Richard Paul
I'm attempting to pull up all entities that have a name that doesn't partially match a given string.
MyEntity.findAllByNameNotLike('bad%')
This gives me the following error:
No such property: nameNot for class: MyEntity
Possible solutions: name" type="groovy.lang.MissingPropertyException"
I had a quick look at the criteria style but I…