Apply an "not equal" constraint to the projections

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

Syntax

C#
public static AbstractCriterion NotEqProperty(
	string propertyName,
	IProjection rhsProjection
)
Visual Basic
Public Shared Function NotEqProperty ( _
	propertyName As String, _
	rhsProjection As IProjection _
) As AbstractCriterion
Visual C++
public:
static AbstractCriterion^ NotEqProperty(
	String^ propertyName, 
	IProjection^ rhsProjection
)

Parameters

propertyName
Type: System..::..String
Name of the property.
rhsProjection
Type: NHibernate.Criterion..::..IProjection
The RHS projection.

Return Value

A EqPropertyExpression .

See Also