当前位置: 首页>>代码示例>>C#>>正文


C# EFRepository.Query方法代码示例

本文整理汇总了C#中EFRepository.Query方法的典型用法代码示例。如果您正苦于以下问题:C# EFRepository.Query方法的具体用法?C# EFRepository.Query怎么用?C# EFRepository.Query使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在EFRepository的用法示例。


在下文中一共展示了EFRepository.Query方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Query_Using_QueryMethod_Returns_Matched_Records_Only

        public void Query_Using_QueryMethod_Returns_Matched_Records_Only()
        {
            using (var testData = new EFDataGenerator(new TestModel()))
            using (new UnitOfWorkScope())
            {
                testData.Batch(actions => actions.CreateOrderForCustomer(actions.CreateCustomerInState("PA")));

                var customersInPA = new Specification<Order>(x => x.Customers.State == "PA");

                var ordersRepository = new EFRepository<Order>();
                var results = from order in ordersRepository.Query(customersInPA) select order;

                Assert.That(results.Count(), Is.EqualTo(1));
            }
        }
开发者ID:tmchan,项目名称:ncommon,代码行数:15,代码来源:EFRepositoryTests.cs

示例2: Can_query_using_specification

        public void Can_query_using_specification()
        {
            using (var testData = new EFTestData(OrdersContextProvider()))
            {
                testData.Batch(actions =>
                {
                    actions.CreateOrdersForCustomers(actions.CreateCustomersInState("PA", 2));
                    actions.CreateOrdersForCustomers(actions.CreateCustomersInState("DE", 5));
                    actions.CreateOrdersForCustomers(actions.CreateCustomersInState("LA", 3));
                });

                using (new UnitOfWorkScope())
                {

                    var customersInPa = new Specification<Order>(x => x.Customer.State == "DE");

                    var ordersRepository = new EFRepository<Order>();
                    var results = from order in ordersRepository.Query(customersInPa) select order;

                    Assert.That(results.Count(), Is.GreaterThan(0));
                    Assert.That(results.Count(), Is.EqualTo(5));
                }
            }
        }
开发者ID:jordanyaker,项目名称:ncommon,代码行数:24,代码来源:EFRepositoryQueryTests.cs


注:本文中的EFRepository.Query方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。