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

TestSelectManyJoined() private method

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