Let's say I have a UserAccount domain class that has a UserPreferences domain class. I do this to sepa开发者_如何学编程rate the fields for organization purposes. Is there a way to tell grails/gorm that I really want it to map these domain classes to just the user_account table under the covers?
Thanks!
There is an
static embedded = []
It is described here.
精彩评论