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

TestReverseWhereReverse() private method

private TestReverseWhereReverse ( ) : void
return void
        public virtual void TestReverseWhereReverse()
        {
            var list = db.Customers.OrderBy(c => c.ContactName).Reverse().Where(c => c.City == "London").Reverse().ToList();
            AssertValue(6, list.Count);
            AssertValue("EASTC", list[0].CustomerID);
            AssertValue("BSBEV", list[5].CustomerID);
        }
NorthwindExecutionTest