鉴于以下域类,可以从author
对象获取Book
ID的值,而无需像这样获取相关的Author
对象:{{1} (见this SO question)。
Book.get(1).authorId
但是,将class Author {
hasMany = [books: Book]
}
class Book {
belongsTo = [author: Author]
}
添加到books ignoreNotFound:true
Book
(以解决一些遗留问题)会导致static mapping
成为Book.get(1).authorId
。
当null
表中缺少相关记录时,有没有办法在AUTHOR_ID
表中获取BOOK
列的值?