Apply a "greater than" constraint to two properties

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

Syntax

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

Parameters

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

Return Value

A LtPropertyExpression .

See Also