I found that there is ignored test in LINQ. I need to make this one pass. 
Who can help me?

[Category("JOIN")]
        [Test(
            Description =
                "This sample shows how to get LEFT OUTER JOIN by using 
DefaultIfEmpty(). The DefaultIfEmpty() method returns null when there is no 
Order for the Employee."
            )]
        [Ignore("TODO left outer join")]
        public void DLinqJoin7()
        {
            var q =
                from e in db.Employees
                join o in db.Orders on e equals o.Employee into ords
                from o in ords.DefaultIfEmpty()
                select new {e.FirstName, e.LastName, Order = o};
 
            ObjectDumper.Write(q);
        }

-- 
You received this message because you are subscribed to the Google Groups 
"nhusers" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/nhusers/-/8tmh_B1RFzwJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/nhusers?hl=en.

Reply via email to