[ This document was written for WCF Services Version 1 Service Pack 2 and might not be up to date
Please see or for a list of changes since WCF RIA Services ]
This walkthrough describes how to add and customize methods in Open Ria Services that query a data source. Such methods, which are referred to as query methods, must be defined with a signature that the framework recognizes as specifying a query method. The query methods satisfy this requirement by applying the . The set of expected query signatures are divided into two broad categories: those queries that always return a single type of and those queries that can, potentially, return more than one of type T in an or an . For more information about the permitted query method signatures, see .
When you create a new domain service class and specify their entities in the Add New Domain Service Class dialog box, the Open Ria Services framework automatically creates a simple query method in this class for each entity exposed by the service. This query method simply retrieves all of the records for the entity. This walkthrough describes how to add new query methods that perform more complex scenarios such as filtering by a parameter value. This walkthrough shows how to add queries that return a single entity and also how to add queries that return a collection of entities.
Prerequisites
This and the other walkthroughs presented in the Open Ria Services documentation require several prerequisite programs, such as Visual Studio and the Silverlight Developer Runtime and SDK, be installed and configured properly, in addition to Open Ria Services and the Open Ria Services Toolkit. They also require installing and configuring SQL Server 2008 R2 Express with Advanced Services and installing the AdventureWorks OLTP and LT database.
Detailed instructions for the satisfaction of each of these prerequisites are provided by the topics within the node. Follow the instructions provided there before proceeding with this walkthrough to ensure that you encounter as few problems as possible when working through this Open Ria Services walkthroughs.
This walkthrough assumes you have completed the procedures described in and have the solution created there ready to modify in the procedures described here.
To add a query method that accepts a parameter and returns a single entity
Open the solution constructed in the topic that exposes data from the Customer table.
In the server project, open the CustomerDomainService domain service class that exposes data from the Customer table.
Add a query method that accepts an integer parameter and returns the Customer entity with the matching customer ID.
If a method that returns a single entity includes the attribute, you must set the property to false. Users cannot specify additional query operations from the client. If the query method matches the expected signature for a query, you do not have to apply the attribute. The return value must be a single instance of an entity object.
<Query(IsComposable:=False)>
Public Function GetCustomersByID(ByVal customerID As Integer) As Customer
Return Me.ObjectContext.Customers.Single(Function(c) c.CustomerID = customerID)
End Function
To add a query method that accepts a parameter and returns a collection of entities
Open the domain service class that exposes data from the Customer table.
In the CustomerDomainService domain service class, add a query method that accepts a string parameter and returns any customers whose last name starts with that letter.
Public Function GetCustomersByLastNameLetter(ByVal startingLastNameLetter As String) As IQueryable(Of Customer)
Return Me.ObjectContext.Customers.Where(Function(c) c.LastName.StartsWith(startingLastNameLetter) = True)
End Function
To display the results of those query methods in the client project.
In the client project, open MainPage.xaml.
Add two TextBox controls and two Button controls so that the user can filter customer records either by the ID or by the first letter of the last name.
The following XAML shows a complete layout along with the existing DataGrid.
Open the code-behind page for MainPage.xaml (MainPage.xaml.cs or MainPage.xaml.vb).
Add code to retrieve query results based on the user input.
Partial Public Class MainPage
Inherits UserControl
Dim _customerContext As CustomerDomainContext
Public Sub New()
InitializeComponent()
End Sub
Private Sub LetterButton_Click(ByVal sender As System.Object, ByVal e As System.Windows.RoutedEventArgs)
IDButton.IsEnabled = False
LetterButton.IsEnabled = False
Dim loadOp = Me._customerContext.Load(Me._customerContext.GetCustomersByLastNameLetterQuery(LetterValue.Text), AddressOf CustomerLoadedCallback, Nothing)
CustomerGrid.ItemsSource = loadOp.Entities
End Sub
Private Sub IDButton_Click(ByVal sender As System.Object, ByVal e As System.Windows.RoutedEventArgs)
IDButton.IsEnabled = False
LetterButton.IsEnabled = False
Dim loadOp = Me._customerContext.Load(Me._customerContext.GetCustomersByIDQuery(IDValue.Text), AddressOf CustomerLoadedCallback, Nothing)
CustomerGrid.ItemsSource = loadOp.Entities
End Sub
Public Sub CustomerLoadedCallback(ByVal loadOperation As LoadOperation(Of Customer))
IDButton.IsEnabled = True
LetterButton.IsEnabled = True
End Sub
End Class