Bind an instance of a Char to an indexed parameter using an NHibernate CharType.

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

Syntax

C#
IQuery SetCharacter(
	int position,
	char val
)
Visual Basic
Function SetCharacter ( _
	position As Integer, _
	val As Char _
) As IQuery
Visual C++
IQuery^ SetCharacter(
	int position, 
	wchar_t val
)

Parameters

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

Return Value

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

See Also