我有这样的域名实体:
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
,则不会出现任何问题。