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

TestOrderByDescendingThenByDescending() private method

private TestOrderByDescendingThenByDescending ( ) : void
return void
        public virtual void TestOrderByDescendingThenByDescending()
        {
            var list = db.Customers.OrderByDescending(c => c.CustomerID).ThenByDescending(c => c.Country).ToList();
            var sorted = list.OrderByDescending(c => c.CustomerID).ThenByDescending(c => c.Country).ToList();
            AssertValue(91, list.Count);
            Assert.IsTrue(Enumerable.SequenceEqual(list, sorted));
        }
NorthwindExecutionTest