If you have the following relationship:
TableA --(1:n)--> TableB --(1:n)--> TableC
I now want to display all Entities from TableC in a Grid. How do I do that?
I can get a list of TableC for any Entity in TableB:
EntityA.EntityCollectionB[x].EntityCollectionC
In SQL it would be simple
select whatever
from TableC
join TableB on TableB.TableBKey=Tablec.TableBKey
join TableA on TableA.TableAKey=TableB.TableAKey
And I could of course define a view and scope it, or a stored procedure, but thought I would be able to do it with LLBLGen objects?