閱讀英文

共用方式為


QueryDefinition.WithParameter(String, Object) Method

Definition

Add parameters to the SQL query

public Azure.Cosmos.QueryDefinition WithParameter (string name, object value);

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