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

  • Home
  • SEARCH
  • 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 6820395
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T21:25:11+00:00 2026-05-26T21:25:11+00:00

I have a SQL database that I’m using LINQ to connect to (LINQ To

  • 0

I have a SQL database that I’m using LINQ to connect to (LINQ To SQL) and a local set of XML data (in a dataset). I need to perform an outer left join on the SQL table “tblDoc” and dataset table “document” on the keys “tblDoc:sourcePath, document:xmlLink”. Both keys are unfortunately strings. The code I have below doesn’t return any results and I’ve tried a few variations but my LINQ skills are limited. Does anyone have any suggestions or alternate methods to try?

DataColumn xmlLinkColumn = new DataColumn(
    "xmlLink",System.Type.GetType("System.String"));
xmlDataSet.Tables["document"].Columns.Add(xmlLinkColumn);
foreach (DataRow xmlRow in xmlDataSet.Tables["document"].Rows)
{
    xmlRow["xmlLink"] = (string)xmlRow["exportPath"] + 
        (string) xmlRow["exportFileName"];            
}

var query =
    from t in lawDataContext.tblDocs.ToList()
    join x in xmlDataSet.Tables["Document"].AsEnumerable()
    on t.SourceFile equals (x.Field<string>("xmlLink"))
    select new
    {
        lawID = t.ID,
        xmlID = x == null ? 0 : x.Field<int>("id")
    };       

foreach (var d in query.ToArray())
{
    Debug.WriteLine(d.lawID.ToString() + ", " + d.xmlID.ToString());
}
  • 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-26T21:25:11+00:00Added an answer on May 26, 2026 at 9:25 pm

    The join clause produces standard inner join behavior. To get an outer join, you need to use the DefaultIfEmpty() extension method:

    var query = from t in lawDataContext.tblDocs.ToList()
                join x in xmlDataSet.Tables["Document"].AsEnumerable()
                    on t.SourceFile equals (x.Field<string>("xmlLink"))
                    into outer
                from o in outer.DefaultIfEmpty()
                select new
                {
                    lawID = t.ID,
                    xmlID = o == null ? 0 : o.Field<int>("id")
                }; 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a SQL Server database that contains an xml column. I need to
I have a SQL database that has a table with a field set to
I have a SQL Server 2005 database that has been deleted, and I need
I have a Microsoft SQL Server database that contains a data field of BIT
I have data in a sql database that'd I'd like to display on a
So I have a sql database that generates an xml file. This xml file
I have a SQL Server 2005 database that stores data for multiple users. Each
I have data stored in a SQL database that I'm attempting to read into
I have a SQL Server database that contains a VarChar(50) column. I am using
I have a small SQL Server database that I need to copy on command

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.