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

TestWhereFirst() private method

private TestWhereFirst ( ) : void
return void
        public virtual void TestWhereFirst()
        {
            var first = db.Customers.OrderBy(c => c.ContactName).Where(c => c.City == "London").First();
            Assert.AreNotEqual(null, first);
            AssertValue("EASTC", first.CustomerID);
        }
NorthwindExecutionTest