Sdílet prostřednictvím


SqlQuerySpec Constructors

Definition

Overloads

SqlQuerySpec()

Initializes a new instance of the SqlQuerySpec class for the Azure Cosmos DB service.

SqlQuerySpec(String)

Initializes a new instance of the SqlQuerySpec class for the Azure Cosmos DB service.

SqlQuerySpec(String, SqlParameterCollection)

Initializes a new instance of the SqlQuerySpec class for the Azure Cosmos DB service.

SqlQuerySpec()

Initializes a new instance of the SqlQuerySpec class for the Azure Cosmos DB service.

public SqlQuerySpec ();
Public Sub New ()

Remarks

The default constructor initializes any fields to their default values.

Applies to

SqlQuerySpec(String)

Initializes a new instance of the SqlQuerySpec class for the Azure Cosmos DB service.

public SqlQuerySpec (string queryText);
new Microsoft.Azure.Documents.SqlQuerySpec : string -> Microsoft.Azure.Documents.SqlQuerySpec
Public Sub New (queryText As String)

Parameters

queryText
String

The text of the query.

Applies to

SqlQuerySpec(String, SqlParameterCollection)

Initializes a new instance of the SqlQuerySpec class for the Azure Cosmos DB service.

public SqlQuerySpec (string queryText, Microsoft.Azure.Documents.SqlParameterCollection parameters);
new Microsoft.Azure.Documents.SqlQuerySpec : string * Microsoft.Azure.Documents.SqlParameterCollection -> Microsoft.Azure.Documents.SqlQuerySpec
Public Sub New (queryText As String, parameters As SqlParameterCollection)

Parameters

queryText
String

The text of the database query.

parameters
SqlParameterCollection

The SqlParameterCollection instance, which represents the collection of query parameters.

Applies to