up vote 52 down vote favorite
34
share [g+] share [fb]

I'm having some trouble figuring out how to use more than one left outer join using LINQ to SQL. I understand how to use one left outer join. I'm using VB.NET. Below is my SQL syntax.

T-SQL

SELECT
    o.OrderNumber,
    v.VendorName,
    s.StatusName
FROM
    Orders o
LEFT OUTER JOIN Vendors v ON
    v.Id = o.VendorId
LEFT OUTER JOIN Status s ON
    s.Id = o.StatusId
WHERE
    o.OrderNumber >= 100000 AND
    o.OrderNumber <= 200000
link|improve this question

feedback

4 Answers

up vote 90 down vote accepted

This may be cleaner (you dont need all the into statements):


var query = 
    from order in dc.Orders
    from vendor 
    in dc.Vendors
         .Where(v => v.Id == order.VendorId)
         .DefaultIfEmpty()
    from status 
    in dc.Status
         .Where(s => s.Id == order.StatusId)
         .DefaultIfEmpty()
    select new { Order = order, Vendor = vendor, Status = status } 
    //Vendor and Status properties will be null if the left join is null

link|improve this answer
How does the generated SQL look like ? Doesn't it contains nested select this way ? – Manitra Andriamitondra Feb 15 '10 at 9:55
3  
@manitra: No, you actually get LEFT OUTER JOIN statements (no nested selects). Pretty crazy huh? – Amir Feb 15 '10 at 20:23
2  
I like this approach better than using all the into statements. Thanks for posting this! – Bryan Roth Mar 22 '10 at 21:57
1  
This is all kinds of sweet. However: wtf why isn't there a left join in linq if there's a join? What set-based world only does inner joins? Grrr. – jcollum Nov 9 '10 at 17:56
1  
This just put a big smile on my face. Thanks for the easy-to-follow example. – nycdan Jan 28 '11 at 21:49
show 2 more comments
feedback

Don't have access to VisualStudio (I'm on my Mac), but using the information from http://bhaidar.net/cs/archive/2007/08/01/left-outer-join-in-linq-to-sql.aspx it looks like you may be able to do something like this:

var query = from o in dc.Orders
            join v in dc.Vendors on o.VendorId equals v.Id into ov
            from x in ov.DefaultIfEmpty()
            join s in dc.Status on o.StatusId equals s.Id into os
            from y in os.DefaultIfEmpty()
            select new { o.OrderNumber, x.VendorName, y.StatusName }
link|improve this answer
@tvanfosson: what opinion do you have of using lamda expressions for defining the joins? – Amir Dec 28 '09 at 19:28
Do you mean extensions methods? That's probably would how I would do it now. I don't often use the LINQ syntax any more. – tvanfosson Dec 28 '09 at 19:32
3  
would you mind updating your answer to show the extension method approach or linking to my answer at the bottom? Just want the world to know both ways :-) – Amir Dec 28 '09 at 19:34
feedback

I figured out how to use multiple left outer joins in VB.NET using LINQ to SQL:

Dim db As New ContractDataContext()

Dim query = From o In db.Orders _
            Group Join v In db.Vendors On v.VendorNumber Equals o.VendorNumber Into ov = Group _
            From x In ov.DefaultIfEmpty() _
            Group Join s In db.Status On s.Id Equals o.StatusId Into os = Group _
            From y In os.DefaultIfEmpty() _
            Where o.OrderNumber >= 100000 And o.OrderNumber <= 200000 _
            Select Vendor_Name = x.Name, _
                   Order_Number = o.OrderNumber, _
                   Status_Name = y.StatusName
link|improve this answer
1  
@Bryan: great linq to sql question, consider using lambda expressions to simplify the linq statement (you can get rid of the "into" clauses and really clean up the linq statement) – Amir Jan 4 '10 at 4:23
@aikr473: Good point. Thanks. – Bryan Roth Feb 4 '10 at 19:53
feedback

I think you should be able to follow the method used in this post. It looks really ugly, but I would think you could do it twice and get the result you want.

I wonder if this is actually a case where you'd be better off using DataContext.ExecuteCommand(...) instead of converting to linq.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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