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

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

Syntax

Visual Basic (Declaration)
Public Sub New ( _
	name As String, _
	defaultCondition As String, _
	parameterTypes As IDictionary _
)
C#
public FilterDefinition(
	string name,
	string defaultCondition,
	IDictionary parameterTypes
)
Visual C++
public:
FilterDefinition(
	String^ name, 
	String^ defaultCondition, 
	IDictionary^ parameterTypes
)
JavaScript
NHibernate.Engine.FilterDefinition = function(name, defaultCondition, parameterTypes);

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..::.IDictionary
A dictionary storing the NHibernate IType type of each parameter under its name.

See Also