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

TestCompareEntityNotEqual() private method

private TestCompareEntityNotEqual ( ) : void
return void
        public virtual void TestCompareEntityNotEqual()
        {
            Customer alfki = new Customer { CustomerID = "ALFKI" };
            var list = db.Customers.Where(c => c != alfki);
            AssertValue(90, list.Count());
        }
NorthwindExecutionTest