<PackageReference Include="Relativity.Server.Utility.SDK" Version="5000.0.0" />

ParameterList

public class ParameterList : List<SqlParameter>
Represents a list of SqlParameter
public ParameterList()

Initializes a new, empty instance of ParameterList.

public ParameterList(int capacity)

Initializes a new, empty instance of ParameterList with the specified capacity.

Initializes a new instance of ParameterList from the provided parameters.

Initializes a new instance of ParameterList containing the specified parameter.

public ParameterList(string parameterName, SqlDbType dbType, object value)

Initializes a new instance of ParameterList containing the specified parameter.

public void Add(string parameterName, SqlDbType dbType, object value)

Adds a parameter to this ParameterList.

public void Add(string parameterName, SqlDbType dbType, int fieldLength, object value)

Adds a parameter to this ParameterList.

public string GetParameterNameCsv()

Gets a CSV representation of this ParameterList.