手伝っていただけませんか。私はGrailsが初めてです。grails doc を読みましたが、質問に対する答えが見つかりませんでした。
クラス Customer: パッケージ テスト
class Customer {
int points
static hasMany = [pr:Product]
List pr;
static constraints = {
}
}
クラス製品:
package test
class Product {
String question
int points
static belongsTo = [c:Customer]
static constraints = {
}
ご覧のとおり、1 対多の関係があります。次に、1 人の顧客に多くの製品を追加します。
def cust = new Customer()
def pr = new Product();
cust.pr=new ArrayList();
cust.pr.add(pr);
これは正しい認識ですか?