Constructs a parameter specification for a particular filter parameter.

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

Syntax

C#
public DynamicFilterParameterSpecification(
	string filterName,
	string parameterName,
	IType expectedDefinedType,
	Nullable<int> collectionSpan
)
Visual Basic
Public Sub New ( _
	filterName As String, _
	parameterName As String, _
	expectedDefinedType As IType, _
	collectionSpan As Nullable(Of Integer) _
)
Visual C++
public:
DynamicFilterParameterSpecification(
	String^ filterName, 
	String^ parameterName, 
	IType^ expectedDefinedType, 
	Nullable<int> collectionSpan
)

Parameters

filterName
Type: System..::..String
The name of the filter
parameterName
Type: System..::..String
The name of the parameter
expectedDefinedType
Type: NHibernate.Type..::..IType
The paremeter type specified on the filter metadata
collectionSpan
Type: System..::..Nullable<(Of <(<'Int32>)>)>

[Missing <param name="collectionSpan"/> documentation for "M:NHibernate.Param.DynamicFilterParameterSpecification.#ctor(System.String,System.String,NHibernate.Type.IType,System.Nullable{System.Int32})"]

See Also