You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When modeling a typical one-to-many relationship (Order-> OrderLine) it is sometimes useful to be able to navigate to the Order when you have and OrderLine. This currently can only be accomplished 'manually':
OrderLine(order:Order,....)
A good example would be Grails GORM support which has a 'belongsTo' statement in it's domain object DSL that serves this function
When modeling a typical one-to-many relationship (Order-> OrderLine) it is sometimes useful to be able to navigate to the Order when you have and OrderLine. This currently can only be accomplished 'manually':
OrderLine(order:Order,....)
A good example would be Grails GORM support which has a 'belongsTo' statement in it's domain object DSL that serves this function
http://grails.org/doc/latest/guide/GORM.html#manyToOneAndOneToOne
The text was updated successfully, but these errors were encountered: