Bind an instance of a Guid to a named parameter using an NHibernate GuidType.

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

Syntax

C#
IQuery SetGuid(
	int position,
	Guid val
)
Visual Basic
Function SetGuid ( _
	position As Integer, _
	val As Guid _
) As IQuery
Visual C++
IQuery^ SetGuid(
	int position, 
	Guid val
)

Parameters

position
Type: System..::..Int32
The position of the parameter in the query string, numbered from 0
val
Type: System..::..Guid
An instance of a Guid.

Return Value

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

See Also