Initializes a new instance of the AndExpression class that combines two ICriterion.

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

Syntax

C#
public AndExpression(
	ICriterion lhs,
	ICriterion rhs
)
Visual Basic
Public Sub New ( _
	lhs As ICriterion, _
	rhs As ICriterion _
)
Visual C++
public:
AndExpression(
	ICriterion^ lhs, 
	ICriterion^ rhs
)

Parameters

lhs
Type: NHibernate.Criterion..::..ICriterion
The ICriterion to use as the left hand side.
rhs
Type: NHibernate.Criterion..::..ICriterion
The ICriterion to use as the right hand side.

See Also