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 IsNotEmpty ( _
	propertyName As String _
) As AbstractEmptinessExpression
C#
public static AbstractEmptinessExpression IsNotEmpty(
	string propertyName
)
Visual C++
public:
static AbstractEmptinessExpression^ IsNotEmpty(
	String^ propertyName
)
JavaScript
NHibernate.Expression.Expression.isNotEmpty = function(propertyName);

Parameters

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

Return Value

A IsNotEmptyExpression.

See Also