Apply an "is not empty" constraint to the named property

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

Syntax

Visual Basic (Declaration)
Public Shared Function IsEmpty ( _
	propertyName As String _
) As AbstractEmptinessExpression
C#
public static AbstractEmptinessExpression IsEmpty(
	string propertyName
)
Visual C++
public:
static AbstractEmptinessExpression^ IsEmpty(
	String^ propertyName
)
JavaScript
NHibernate.Expression.Expression.isEmpty = function(propertyName);

Parameters

propertyName
Type: System..::.String
The name of the Property in the class.

Return Value

A IsEmptyExpression.

See Also