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

TestSelectWhereAssociation() private method

private TestSelectWhereAssociation ( ) : void
return void
        public virtual void TestSelectWhereAssociation()
        {
            var ords = (
                from o in db.Orders
                where o.Customer.City == "Seattle"
                select o
                ).ToList();
            AssertValue(14, ords.Count);
        }
NorthwindExecutionTest