Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 462503
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T23:04:52+00:00 2026-05-12T23:04:52+00:00

There are many examples of outer join using Linq to Sql, all of them

  • 0

There are many examples of outer join using Linq to Sql, all of them hinging on DefaultIfEmpty() which is not supported with Linq to Entity Framework.

Does this mean that outer join is not possible with Linq to Entity using .NET 3.5 (I understand that DefaultIfEmpty is coming with 4.0 — but that’s not an option at this time for me)

Could somebody please provide a concise example using Linq to EntityFramework.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T23:04:52+00:00Added an answer on May 12, 2026 at 11:04 pm

    In LINQ to Entities, think in terms of relationships rather than SQL joins. Hence, the literal equivalent of a SQL outer join on an entity Person with a one to zero or one relationship to CustomerInfo would be:

    var q = from p in Context.People
            select new
            {
                Name = p.Name,
                IsPreferredCustomer = (bool?)p.CustomerInfo.IsPreferredCustomer
            };
    

    L2E will coalesce the join, so that if CustomerInfo is null then the whole expression evaluates to null. Hence the cast to a nullable bool, because the inferred type of non-nullable bool couldn’t hold that result.

    For one-to-many, you generally want a hierarchy, rather than a flat, SQL-style result set:

    var q = from o in Context.Orders
            select new 
            {
                OrderNo = o.OrderNo,
                PartNumbers = from od in o.OrderDetails
                              select od.PartNumber
            }
    

    This is like a left join insofar as you still get orders with no details, but it’s a graph like OO rather than a set like SQL.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I found many examples of generic repository using LINQ to SQL. However there is
There are many examples of using the jQuery sliders and running a maximum cumulative
I received a client application, using SQL Server 2005, which contains many views with
Actually there many examples and I have used one of them. But it works
First of all, there are many cases where Sleep() is misused , for example
There were many questions about C++ template classes which contain static member variables, as
There's many examples of this but I can't find the right one for me
There are many, many examples in books, and on the internet about how to
How are GUIs like this made, but in console applications? There are many examples,
Possible Duplicate: Generating all Possible Combinations Is there a good LINQ way to do

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.