Initializes a new instance of the AndExpression class
that combines two ICriterion.
Namespace:
NHibernate.ExpressionAssembly: NHibernate (in NHibernate.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Sub New ( _ lhs As ICriterion, _ rhs As ICriterion _ ) |
C# |
---|
public AndExpression( ICriterion lhs, ICriterion rhs ) |
Visual C++ |
---|
public: AndExpression( ICriterion^ lhs, ICriterion^ rhs ) |
JavaScript |
---|
NHibernate.Expression.AndExpression = function(lhs, rhs); |
Parameters
- lhs
- Type: NHibernate.Expression..::.ICriterion
The ICriterion to use as the left hand side.
- rhs
- Type: NHibernate.Expression..::.ICriterion
The ICriterion to use as the right hand side.