I have a schema that looks like this:

There is a one to one relationship between Foo and Bar and a many to one relationship between Bar and Baz.
I have Foo and Baz mapped to separate objects, but I'm not sure how to go about linking them using Bar, without making Bar a separate object. (I want to be able to access Baz as a property of Foo)
It looks like it should be possible as it's very similar to the example given here, except using a many-to-one relationship instead of a property.