0
使用經典作者/書籍模式(grails 2.2.0)。Grails一對多保存孩子不刷新父親子集
class Author {
static hasMany = [books: Book]
}
class Book {
static belongsTo = [author: Author]
}
爲什麼當我創建一個子實例它dosent更新父集:
Author author = new Author().save()
Book book = new Book(author: author).save()
assert author.books.size == 1 // FAIL
由於數據庫author對象不會改變,爲什麼我必須使用author.addToBooks(書) 。保存() ???
是的,它真的讓sens – Thermech 2013-04-11 17:00:34