RegistryManager.CreateQuery Method   
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| CreateQuery(String) | Retrieves a handle through which a result for a given query can be fetched. | 
| CreateQuery(String, Nullable<Int32>) | Retrieves a handle through which a result for a given query can be fetched. | 
CreateQuery(String)
Retrieves a handle through which a result for a given query can be fetched.
public virtual Microsoft.Azure.Devices.IQuery CreateQuery(string sqlQueryString);abstract member CreateQuery : string -> Microsoft.Azure.Devices.IQuery
override this.CreateQuery : string -> Microsoft.Azure.Devices.IQueryPublic Overridable Function CreateQuery (sqlQueryString As String) As IQueryParameters
- sqlQueryString
- String
The SQL query.
Returns
A handle used to fetch results for a SQL query.
Applies to
CreateQuery(String, Nullable<Int32>)
Retrieves a handle through which a result for a given query can be fetched.
public virtual Microsoft.Azure.Devices.IQuery CreateQuery(string sqlQueryString, int? pageSize);abstract member CreateQuery : string * Nullable<int> -> Microsoft.Azure.Devices.IQuery
override this.CreateQuery : string * Nullable<int> -> Microsoft.Azure.Devices.IQueryPublic Overridable Function CreateQuery (sqlQueryString As String, pageSize As Nullable(Of Integer)) As IQueryParameters
- sqlQueryString
- String
The SQL query.
Returns
A handle used to fetch results for a SQL query.