我有一个这样的域实体:
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
那么什么都不会存在。