When implemented by a class, puts the value/values from the mapped class into the IDbCommand.

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

Syntax

Visual Basic (Declaration)
Public MustOverride Sub NullSafeSet ( _
	st As IDbCommand, _
	value As Object, _
	index As Integer, _
	session As ISessionImplementor _
)
C#
public abstract void NullSafeSet(
	IDbCommand st,
	Object value,
	int index,
	ISessionImplementor session
)
Visual C++
public:
virtual void NullSafeSet(
	IDbCommand^ st, 
	Object^ value, 
	int index, 
	ISessionImplementor^ session
) abstract
JavaScript
function nullSafeSet(st, value, index, session);

Parameters

st
Type: System.Data..::.IDbCommand
The IDbCommand to put the values into.
value
Type: System..::.Object
The object that contains the values.
index
Type: System..::.Int32
The index of the IDbDataParameter to start writing the values to.
session
Type: NHibernate.Engine..::.ISessionImplementor

Implements

IType..::.NullSafeSet(IDbCommand, Object, Int32, ISessionImplementor)

Remarks

Implementors should handle possibility of null values. A multi-column type should be written to parameters starting from index.

See Also