Apply a "greater than or equal" 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 GeProperty(
	IProjection lhsProjection,
	IProjection rhsProjection
)
Visual Basic
Public Shared Function GeProperty ( _
	lhsProjection As IProjection, _
	rhsProjection As IProjection _
) As AbstractCriterion
Visual C++
public:
static AbstractCriterion^ GeProperty(
	IProjection^ lhsProjection, 
	IProjection^ rhsProjection
)

Parameters

lhsProjection
Type: NHibernate.Criterion..::..IProjection
The LHS projection.
rhsProjection
Type: NHibernate.Criterion..::..IProjection
The RHS projection.

Return Value

A LePropertyExpression .

See Also