So I believe I have found out that group join
is a left outer join
and that is what I need. But I need to check if the joined tables property is null
. But I haven't got it working yet.
So I basically need the equivalent of this query in Linq Entity Framework
SELECT
id, test, test2
FROM Table1
LEFT OUTER JOIN Table2 ON
table1.id = table2.id
WHERE table2.example = NULL;
I have tried to do this with lambda but without any success yet. I can't seem to get the hold of the table2
property example for the where
statement.