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

TestNot() private method

private TestNot ( ) : void
return void
        public virtual void TestNot()
        {
            var custs = db.Customers.Where(c => !(c.Country == "USA")).Select(c => c.Country).ToList();
            AssertValue(78, custs.Count);
        }
NorthwindExecutionTest