Working through the examples, if I have say an entity person that has an entity address. I could create a EmbeddedEntity and add that to a Entity as a one to one mapping, I could even create a list make it a one to many.
is that the only way, if I want separate storage, for say an object, with a one to many mapping to another, would I first have to pull that first object back, which will contain a list of keys, I then use those keys to bring back the many objects.
Or is there a way of pulling an object, and it will pull all the other objects mapped to it. (Not using EmbeddedEntity).
Thank you for any help.