Initialize a new instance of the EqExpression class for a named Property and its value.

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

Syntax

Visual Basic (Declaration)
Public Sub New ( _
	propertyName As String, _
	value As Object, _
	ignoreCase As Boolean _
)
C#
public EqExpression(
	string propertyName,
	Object value,
	bool ignoreCase
)
Visual C++
public:
EqExpression(
	String^ propertyName, 
	Object^ value, 
	bool ignoreCase
)
JavaScript
NHibernate.Expression.EqExpression = function(propertyName, value, ignoreCase);

Parameters

propertyName
Type: System..::.String
The name of the Property in the class.
value
Type: System..::.Object
The value for the Property.
ignoreCase
Type: System..::.Boolean
Use case-insensitive comparison

See Also