vote up 5 vote down star
3

Assuming I have a left outer join as such:

from f in Foo
join b in Bar on f.Foo_Id equals b.Foo_Id into g
from result in g.DefaultIfEmpty()
select new { Foo = f, Bar = result }

How would I express the same task using extension methods? E.g.

Foo.GroupJoin(Bar, f => f.Foo_Id, b => b.Foo_Id, (f,b) => ???)
    .Select(???)
flag

50% accept rate

2 Answers

vote up 4 vote down check
var qry = Foo.GroupJoin(
          Bar, 
          foo => foo.Foo_Id,
          bar => bar.Foo_Id,
          (x,y) => new { Foo = x, Bars = y })
    .SelectMany(
          x => x.Bars.DefaultIfEmpty(),
          (x,y) => new { Foo=x.Foo, Bar=y});
link|flag
vote up 1 vote down

You can use Reflector to decompile the generated code and see which extension methods are used.

link|flag
+1 for teaching a man to fish... – Heisenberg Feb 25 at 6:52
FYI Resharper will also let you switch back and forth between them real easy – Nik Jun 26 at 12:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.