【发布时间】:2014-09-01 18:41:02
【问题描述】:
class Country{
String id
String code
Set<State> states
static embedded = ['states']
}
class State{
String id
String code
}
我正在尝试为国家代码 + 州代码设置唯一索引(或 gorm 约束验证)
这些不起作用:
- 代码唯一性:约束中为真
- 代码索引:true,indexAttributes:[唯一:true]
你能帮帮我吗?
【问题讨论】:
标签: mongodb grails gorm-mongodb