0

我有一个这样的域实体:

class MyEntity{
    AnotherEntity anotherEntity

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

class AnotherEntity{
    long AnotherEntityId
    string SomethingElse
}

当我保存一个实例时,MyEntity我还希望将外键保留AnotherEntity在 MyEntity 的表中,而不必通过 AnotherEntity 的验证或持久性。如果我按原样映射它,insertable: false那么什么都不会存在。

4

0 回答 0