考虑以下简化情况: 我的产品可以具有服务器属性,属性值取决于国家/地区。
当我以标准方式对属性域类进行建模时,如下所示。这意味着属性可以具有取决于国家的值,并且值可以属于不同的属性。 n:m关系产生一个单独的联接表。
class Attribute {
String id
String name
static hasMany = [attributeValues: AttributeValue]
static mapping = {
attributeValues joinTable: [name: 'attribute_values', key: 'attribute_id']
}
}
class AttributeValue {
String id
Locale language
String value
}
现在的问题是,是否可以在没有连接表的情况下在GORM中对此建模?
使用SQL native,这没问题。在数据库中,这将导致如下所示的结构。 联接应从列attribute.attribute_key到列attribute_value.attribute_key
答案 0 :(得分:1)
在数据库中连接表
create view JOIN_ATTRIBUTE_VALUE_V as
(!!the sql u select upown!!)
然后创建grails.domain类
class joinAttributeValueV {
String id
String attributeKey
Locale language
String value
static mapping = {
table 'JOIN_ATTRIBUTE_VALUE_V'
id column:"id" ,comment:""
attributeKey column:"ATTRIBUTE_KEY" ,comment:""
language column:"LANGUAGE" ,comment:""
value column:"VALUE" ,comment:""
}
}
使用GORM获取域类