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

TestTake() private method

private TestTake ( ) : void
return void
        public virtual void TestTake()
        {
            var list = db.Orders.Take(5).ToList();
            AssertValue(5, list.Count);
        }
NorthwindExecutionTest