QueryDefinition.WithParameter(String, Object) Method
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.
Add parameters to the SQL query
public Azure.Cosmos.QueryDefinition WithParameter (string name, object value);
member this.WithParameter : string * obj -> Azure.Cosmos.QueryDefinition
Public Function WithParameter (name As String, value As Object) As QueryDefinition
- name
- String
The name of the parameter.
- value
- Object
The value for the parameter.
An instance of QueryDefinition.
QueryDefinition query = new QueryDefinition(
"select * from t where t.Account = @account")
.WithParameter("@account", "12345");
If the same name is added again it will replace the original value