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

TestAnd() private method

private TestAnd ( ) : void
return void
        public virtual void TestAnd()
        {
            var custs = db.Customers.Where(c => c.Country == "USA" && c.City.StartsWith("A")).Select(c => c.City).ToList();
            AssertValue(2, custs.Count);
            Assert.IsTrue(custs.All(c => c.StartsWith("A")));
        }
NorthwindExecutionTest