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

TestSelectLocal() private method

private TestSelectLocal ( ) : void
return void
        public virtual void TestSelectLocal()
        {
            int x = 10;
            var list = db.Customers.Select(c => x).ToList();
            AssertValue(91, list.Count);
            Assert.IsTrue(list.All(y => y == 10));
        }
NorthwindExecutionTest