你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

QueryDefinition.WithParameter(String, Object) Method

Definition

Add parameters to the SQL query

public Microsoft.Azure.Cosmos.QueryDefinition WithParameter(string name, object value);
member this.WithParameter : string * obj -> Microsoft.Azure.Cosmos.QueryDefinition
Public Function WithParameter (name As String, value As Object) As QueryDefinition

Parameters

name
String

The name of the parameter.

value
Object

The value for the parameter.

Returns

An instance of QueryDefinition.

Examples

QueryDefinition query = new QueryDefinition(
    "select * from t where t.Account = @account")
    .WithParameter("@account", "12345");

Remarks

If the same name is added again it will replace the original value

Applies to