Sets the value of this Type in the IDbCommand.

Namespace: NHibernate.Type
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
public override void Set(
	IDbCommand st,
	Object value,
	int index
)
Visual Basic
Public Overrides Sub Set ( _
	st As IDbCommand, _
	value As Object, _
	index As Integer _
)
Visual C++
public:
virtual void Set(
	IDbCommand^ st, 
	Object^ value, 
	int index
) override

Parameters

st
Type: System.Data..::..IDbCommand
The IDbCommand to add the Type's value to.
value
Type: System..::..Object
The value of the Type.
index
Type: System..::..Int32
The index of the IDataParameter in the IDbCommand.

Remarks

No null values will be written to the IDbCommand for this Type.

See Also