Initialize a new instance of the LogicalExpression class that combines two other ICriterions.

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

Syntax

C#
protected LogicalExpression(
	ICriterion lhs,
	ICriterion rhs
)
Visual Basic
Protected Sub New ( _
	lhs As ICriterion, _
	rhs As ICriterion _
)
Visual C++
protected:
LogicalExpression(
	ICriterion^ lhs, 
	ICriterion^ rhs
)

Parameters

lhs
Type: NHibernate.Criterion..::..ICriterion
The ICriterion to use in the Left Hand Side.
rhs
Type: NHibernate.Criterion..::..ICriterion
The ICriterion to use in the Right Hand Side.

See Also