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

TestSelectOrderIncludeCustomer() private method

private TestSelectOrderIncludeCustomer ( ) : void
return void
        public virtual void TestSelectOrderIncludeCustomer()
        {
            var order = db.Orders.Include(c => c.Customer).FirstOrDefault();
            Assert.IsNotNull(order);
            Assert.IsNotNull(order.Customer);
        }
NorthwindExecutionTest