I am sure that this is not possible in GORM, and I do not know if this is possible in regular Hibernate. But you can fake it:
class Message { String text String number static transients = ['contactInfo'] Contact getContactInfo() { Contact.findByNumber(number) } void setContactInfo(Contact contact) { number = contact.number } }
Burt beckwith
source share