Initialize a new instance of the LogicalExpression class that
combines two other ICriterions.
Namespace:
NHibernate.ExpressionAssembly: NHibernate (in NHibernate.dll)
Syntax
Visual Basic (Declaration) |
---|
Protected Sub New ( _ lhs As ICriterion, _ rhs As ICriterion _ ) |
C# |
---|
protected LogicalExpression( ICriterion lhs, ICriterion rhs ) |
Visual C++ |
---|
protected: LogicalExpression( ICriterion^ lhs, ICriterion^ rhs ) |
JavaScript |
---|
NHibernate.Expression.LogicalExpression = function(lhs, rhs); |
Parameters
- lhs
- Type: NHibernate.Expression..::.ICriterion
The ICriterion to use in the Left Hand Side.
- rhs
- Type: NHibernate.Expression..::.ICriterion
The ICriterion to use in the Right Hand Side.