I have three tables:
Group
GroupUser
User
GroupUser is a join to facilitate a many to many between Group and User.
In my GroupEntity I use a prefetch to fetch the GroupUserEntityCollection and the UserCollectionViaGroupUser
I tried to simply access the User Name with a GroupUser.User.Name reference (in a loop through each GroupUserEntity in the GroupUserCollection), but this errors out, appearing to not be initialized.
I know this is sparse info, I was hoping you could give some general direction around traversing through embedded entity collections. If that doesn't help me get my arms around it, I can provide more specific details tommorrow when I'm at work.
Thanks,
Darwin