Creates a specialized collection-filter collection-key parameter spec.

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

Syntax

C#
public CollectionFilterKeyParameterSpecification(
	string collectionRole,
	IType keyType,
	int queryParameterPosition
)
Visual Basic
Public Sub New ( _
	collectionRole As String, _
	keyType As IType, _
	queryParameterPosition As Integer _
)
Visual C++
public:
CollectionFilterKeyParameterSpecification(
	String^ collectionRole, 
	IType^ keyType, 
	int queryParameterPosition
)

Parameters

collectionRole
Type: System..::..String
The collection role being filtered.
keyType
Type: NHibernate.Type..::..IType
The mapped collection-key type.
queryParameterPosition
Type: System..::..Int32
The position within QueryParameters where we can find the appropriate param value to bind.

See Also