0
說一個Event
域類具有eventDate
屬性。這個eventDate有一個唯一的約束條件,例如每年或每個月的事件必須是唯一的。如何在GORM中指定?僅限於年份字段的Grails唯一約束
class Event{
String name
Date eventDate
static constraints{
eventDate() //----->unique per year or say month
}
}