Imagine the following table structure...---------
TableA
ID
Name
---------
TableB
ID
TableAID
---------
TableC
ID
TableBID
...I want to define a function that joins these three tables and accepts an ...Expression<Func<TableA, TableB, TableC, T>>... as a...