Bind an instance of a Int64 to an indexed parameter using an NHibernate Int64Type.

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

Syntax

Visual Basic (Declaration)
Function SetInt64 ( _
	position As Integer, _
	val As Long _
) As IQuery
C#
IQuery SetInt64(
	int position,
	long val
)
Visual C++
IQuery^ SetInt64(
	int position, 
	long long val
)
JavaScript
function setInt64(position, val);

Parameters

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

See Also