Bind an instance of a Int16 to an indexed parameter using an NHibernate Int16Type.

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

Syntax

Visual Basic (Declaration)
Function SetInt16 ( _
	position As Integer, _
	val As Short _
) As IQuery
C#
IQuery SetInt16(
	int position,
	short val
)
Visual C++
IQuery^ SetInt16(
	int position, 
	short val
)
JavaScript
function setInt16(position, val);

Parameters

position
Type: System..::.Int32
The position of the parameter in the query string, numbered from 0
val
Type: System..::.Int16
A non-null instance of a Int16.

See Also