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

TestSkipTake() private method

private TestSkipTake ( ) : void
return void
        public virtual void TestSkipTake()
        {
            var list = db.Customers.OrderBy(c => c.CustomerID).Skip(5).Take(10).ToList();
            AssertValue(10, list.Count);
            AssertValue("BLAUS", list[0].CustomerID);
            AssertValue("COMMI", list[9].CustomerID);
        }
NorthwindExecutionTest