Is there a way to add multiple subpaths on a subpath?
For example:
Table A
ID
Table B
ID
Table C
ID
FKTableAID
FKTableBID
Table D - contains metadata about the TableC relationship
ID
FKTableCID
Now starting from the top, I want to get an EntityCollection<TableAEntity> populated with the related records from TableC. I then want to populate the EntityCollection<TableC> with both the records from TableB and TableD.
The problem is I can't figure out how to add multiple subpaths on the TableC subpath. I'm kind of getting the impression that this can't be done.
Any ideas on how this can be accomplished?