Gets or sets the parameter values.

Namespace: Simol
Assembly: Simol (in Simol.dll) Version: 1.0.0.0

Syntax

C#
public List<Object> Values { get; private set; }
Visual Basic
Public Property Values As List(Of Object)
	Get
	Private Set
Visual C++
public:
property List<Object^>^ Values {
	List<Object^>^ get ();
	private: void set (List<Object^>^ value);
}

Field Value

The parameter values.

Remarks

If multiple values are provided they will be expanded into a comma-delimited list for use with "in" clauses. For example: select * from Person where FirstName in ('Tom','Dick','Harry')

See Also