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

TestWhereSingle() private method

private TestWhereSingle ( ) : void
return void
        public virtual void TestWhereSingle()
        {
            var single = db.Customers.Where(c => c.CustomerID == "ALFKI").Single();
            Assert.AreNotEqual(null, single);
            AssertValue("ALFKI", single.CustomerID);
        }
NorthwindExecutionTest