[]
Gets or sets the query parameters used in the SQL query.
public QueryParameterInfo[] Parameters { get; set; }
Type | Description |
---|---|
QueryParameterInfo[] | An array of QueryParameterInfo representing the parameters of the SQL query. |
dialog.Parameters = new QueryParameterInfo[] { new QueryParameterInfo("Param1", typeof(int)) };
var parameters = dialog.Parameters;