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

TestSelectAssociationsWhereAssociations() private method

private TestSelectAssociationsWhereAssociations ( ) : void
return void
        public virtual void TestSelectAssociationsWhereAssociations()
        {
            var stuff = (
                from o in db.Orders
                where o.Customer.Country == "USA"
                where o.Customer.City != "Seattle"
                select new { A = o.Customer, B = o.Customer }
                ).ToList();
            AssertValue(108, stuff.Count);
        }
NorthwindExecutionTest