GORM + Hibernate:仅插入外键

时间:2013-10-24 21:24:16

标签: hibernate grails orm mapping gorm

我有这样的域名实体:

class MyEntity{
    AnotherEntity anotherEntity

    static mapping{
        anotherEntity column: 'ANOTHER_ENTITY_ID', ignoreNotFound: true
    }
}

class AnotherEntity{
    long AnotherEntityId
    string SomethingElse
}

当我保存MyEntity的实例时,我想在MyEntity表中保留AnotherEntity的外键,而不必经过AnotherEntity的验证或持久性。如果我将其映射为insertable: false,则不会出现任何问题。

0 个答案:

没有答案