Parameters Property (QueryDesignerDialog)
Gets or sets the query parameters used in the SQL query.
Property Value
An array of
QueryParameterInfo representing the parameters of the SQL query.
dialog.Parameters = new QueryParameterInfo[] { new QueryParameterInfo("Param1", typeof(int)) };
var parameters = dialog.Parameters;