package website
class Translations {
String content;
/* Primary key consists of language_id and text_id */
static constraints = {
content();
}
}
对于具有单个主键的表,一切都很清楚。
但我想知道如何处理复合键。
是否可以使用 Grails 2.1.1 搭建这些表?
package website
class Translations {
String content;
/* Primary key consists of language_id and text_id */
static constraints = {
content();
}
}
对于具有单个主键的表,一切都很清楚。
但我想知道如何处理复合键。
是否可以使用 Grails 2.1.1 搭建这些表?
尽管您的域类有一些额外的要求,但它是直接受支持的。请参阅http://grails.org/doc/latest/guide/GORM.html#compositePrimaryKeys上的 GORM 文档