Beispiel #1
0
        public void EntityReader_Find_InnerJoin()
        {
            var results = _reader.InnerJoin <CustomerCategory>(
                (customer, category) =>
                customer.CustomerCategoryId == category.CustomerCategoryId)
                          .Find();

            Assert.IsNotNull(results);
            Assert.IsTrue(results.Any());
        }