I have 2 tables, and I would like to join them using Lambda statements (not Linq, but Lambda).
This is the request I need:
SELECT
c.*
FROM
board as b
LEFT JOIN category as c ON
b.cid = c.cid
WHERE
b.bid = 1
How to do it?
Say that the board is a dataset / variable, and the category is a different dataset / variable, so I need something like board.Join (category) .Where (b => b.bid == c.cid) ( I know this is wrong, but only because you have an idea what I'm looking for, thanks for your help
user677607
source
share