Set the named parameter's value list for this filter.

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

Syntax

C#
public FilterDefinition(
	string name,
	string defaultCondition,
	IDictionary<string, IType> parameterTypes,
	bool useManyToOne
)
Visual Basic
Public Sub New ( _
	name As String, _
	defaultCondition As String, _
	parameterTypes As IDictionary(Of String, IType), _
	useManyToOne As Boolean _
)
Visual C++
public:
FilterDefinition(
	String^ name, 
	String^ defaultCondition, 
	IDictionary<String^, IType^>^ parameterTypes, 
	bool useManyToOne
)

Parameters

name
Type: System..::..String
The name of the filter for which this configuration is in effect.
defaultCondition
Type: System..::..String
The default filter condition.
parameterTypes
Type: System.Collections.Generic..::..IDictionary<(Of <(<'String, IType>)>)>
A dictionary storing the NHibernate IType type of each parameter under its name.
useManyToOne
Type: System..::..Boolean
if set to true used in many to one rel

See Also