I want to use chained linq. I am having some trouble with the syntax.
select * from APPLES
inner join BANANAS on APPLES.id = BANANAS.someid
I have:
var result = workspace.GetDataSource<APPLE>().Join(.......)
but I am unsure about what goes into the Join bit. Could someone help me out?
How about:
or if you want to use join notation:
Note, you can change the select a to a projection of the elements you need from both tables.
Not as familiar with this format, but it would be something like this: