I am trying to implement outer join on this kind of query for p.Person table. How to do it.
this eg is taken from http://ashishware.com/DSLinqExample.shtml
var onlyinfo = p.Person.Where(n=>n.FirstName.Contains('a')).Join(p.PersonInfo,
n => n.PersonId,
m => m.PersonId,
(n, m) => m).ToArray<Persons.PersonInfoRow>();