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

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

Syntax

Visual Basic (Declaration)
Function SetInt16 ( _
	name As String, _
	val As Short _
) As IMultiQuery
C#
IMultiQuery SetInt16(
	string name,
	short val
)
Visual C++
IMultiQuery^ SetInt16(
	String^ name, 
	short val
)
JavaScript
function setInt16(name, val);

Parameters

name
Type: System..::.String
The name of the parameter
val
Type: System..::.Int16
A non-null instance of a Int16.

See Also