I have two tables TABLE_A
and TABLE_B
which are related.
I need to convert this SQL Server query to a LINQ lambda query in C#:
SELECT a.COL1, a.COL2, b.COL2
FROM TABLE_A a, TABLE_B b
WHERE b.COL1 = A.COL3
Actually b.col1
is pk in table_b and a.col3
is fk of that in table_a