我有这些课。
class Author{
Person person
}
class Person{
String lastName
String firstName
String middleName
}
我想查询人员和作者。
def persons = Person.findAllByLastNameiLike("${a}")
但似乎我做不到
def authors = Author.findAllByPerson(persons)
有什么想法我会怎么做?