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

TestOr() private method

private TestOr ( ) : void
return void
        public virtual void TestOr()
        {
            var custs = db.Customers.Where(c => c.Country == "USA" || c.City.StartsWith("A")).Select(c => c.City).ToList();
            AssertValue(14, custs.Count);
        }
NorthwindExecutionTest