Hi,
I want to left outer join 2 tables called a and b.In the Where clause I want to check properties from both tables i.e like this
var query = from a in data.A
join b in data.B
on a.id == b.id
where a.marks = 1 && b.archived == false
into c
let d= c.FirstOrDefault()
But i cant check for the b.archived == false condition.How can I do this?
thnx in Advance