Пример #1
0
    public async Task AllCustomers_Concise() {
      // All instances of Customer
      var query = EntityQuery.From<Customer>();                       // One way to create a basic EntityQuery

      // Execute the query via a test helper method that encapsulates the ceremony
      await TestFns.VerifyQuery(query, _serviceName, "All customers");
    }