class Country{
String id
String code
Set<State> states
static embedded = ['states']
}
class State{
String id
String code
}
我尝试为国家/地区代码+州代码设置唯一索引(或规范约束验证)
这些不起作用:
你能帮助我吗?
答案 0 :(得分:0)
试试这个:
class State{
String id
String code
static belongsTo = [country: Country]
static constraints = {
code( unique: ['country'])
}
}