NLite.Data.Test.NorthwindExecutionTest.TestSelectManyJoinedDefaultIfEmpty C# (CSharp) Method

TestSelectManyJoinedDefaultIfEmpty() private method

private TestSelectManyJoinedDefaultIfEmpty ( ) : void
return void
        public virtual void TestSelectManyJoinedDefaultIfEmpty()
        {
            var cods = (
                from c in db.Customers
                from o in db.Orders.Where(o => o.CustomerID == c.CustomerID).DefaultIfEmpty()
                select new { c.ContactName, o.OrderDate }
                ).ToList();
            AssertValue(832, cods.Count);
        }
NorthwindExecutionTest