Bind an instance of a Int32 to a named parameter using an NHibernate Int32Type.

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

Syntax

C#
IQuery SetInt32(
	string name,
	int val
)
Visual Basic
Function SetInt32 ( _
	name As String, _
	val As Integer _
) As IQuery
Visual C++
IQuery^ SetInt32(
	String^ name, 
	int val
)

Parameters

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

Return Value

[Missing <returns> documentation for "M:NHibernate.IQuery.SetInt32(System.String,System.Int32)"]

See Also