If I have:...m => m.OwnedCollection(p => p.Addresses)
...and...m => m.OwnedCollection(p => p.Contacts)
...I'd like to combine them to be:...m => m.OwnedCollection(p => p.Addresses).OwnedCollection(p => p.Contacts)
...Is there a way of doing this?...I'd al...