关联也可以被用在查询中:def author = Author.findByName("Stephen King")
def books = author ? Book.findAllByAuthor(author) : []
在这里如果 Author 实例不为null 我们在查询中用它取得给定 Author 的所有Book实例.
关联也可以被用在查询中:def author = Author.findByName("Stephen King")
def books = author ? Book.findAllByAuthor(author) : []
在这里如果 Author 实例不为null 我们在查询中用它取得给定 Author 的所有Book实例.