Bind an instance of a Double to a named parameter using an NHibernate DoubleType.

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

Syntax

C#
IMultiQuery SetDouble(
	string name,
	double val
)
Visual Basic
Function SetDouble ( _
	name As String, _
	val As Double _
) As IMultiQuery
Visual C++
IMultiQuery^ SetDouble(
	String^ name, 
	double val
)

Parameters

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

Return Value

The instance for method chain.

See Also