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

TestReverseReverse() private method

private TestReverseReverse ( ) : void
return void
        public virtual void TestReverseReverse()
        {
            var list = db.Customers.OrderBy(c => c.ContactName).Reverse().Reverse().ToList();
            AssertValue(91, list.Count);
            AssertValue("ROMEY", list[0].CustomerID);
            AssertValue("WOLZA", list[90].CustomerID);
        }
NorthwindExecutionTest