假设我有两个域对象,如下所示,
class Author {
static hasMany = [books: Book]
String name
}
class Book {
String title
static belongsTo=[author:Author]
}
如果我想创建Book
,我必须先创建Author
,如果我想创建Author
,我需要创建一些books
。那么我是否必须同时创建Book
和Author
?
答案 0 :(得分:0)
Author
不需要任何Books
存在。首先创建Author
。 hasMany
是0:N(零到N数)关系。