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

TestCompareConstructedMultiValueNotEqual() private method

private TestCompareConstructedMultiValueNotEqual ( ) : void
return void
        public virtual void TestCompareConstructedMultiValueNotEqual()
        {
            var list = db.Customers.Where(c => new { x = c.City, y = c.Country } != new { x = "London", y = "UK" }).ToList();
            AssertValue(85, list.Count);
        }
NorthwindExecutionTest