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());
}
link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

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")
            }; 
link|improve this answer
Thank you! I'm still getting null values for xmlID in the results. :( Is it because I'm trying to use "equals" against string values? – Hobbes the Tige Nov 7 '11 at 20:06
You'll have null values when you do a left outer join. That's saying "give me ALL the values from the left-side table, and any corresponding values from the right-side table, or null if there aren't any." Or do you mean you're ending up with xmlID = null in the anonymous type projection from your LINQ query? – Joel C Nov 7 '11 at 20:34
feedback

Your Answer

 
or
required, but never shown

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