I am trying to do left outer join in vb.net linq to xml
Dim query = From p In xml1.Elements()
Join s In xml2.Elements()
On p.Name Equals s.Name
into sGroup
From s In sGroup.DefaultIfEmpty()
I am wondering why the into keyword is not recognized. I tried it in C# and I was able to make it run. Can anyone point me to the right direction? Is there a counterpart of the into keyword in visual basic?