Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Provides methods and properties for manually creating a data service query.
Namespace: Sys.Data
Inherits: None.
var a = new Sys.Data.AdoNetQueryBuilder(uri);
Public Constructors
Name |
Description |
|---|---|
Creates a new instance of the AdoNetQueryBuilder class. |
Members
Member |
Description |
|---|---|
Writes the query as a URI path. |
|
Gets or sets the expression that represents the property or properties to return with underlying data. |
|
Gets or sets an expression that represents the condition that must be met for an element to be returned by the query. |
|
Gets or sets the string expression that specifies how to order the query results. |
|
Gets a collection of parameters that are used for the query. |
|
Gets the URI path for the target data in the query. |
|
Gets or set the number of elements to bypass when data is returned. |
|
Gets or sets the maximum number of elements to return in a query. |
Remarks
Generally, you will not use the AdoNetQueryBuilder class to interact with an ADO.NET data service from client script. Instead, you use the AdoNetServiceProxy class to perform data operations. The AdoNetServiceProxy class uses the AdoNetQueryBuilder class to create the query.