Initialize a new instance of the BetweenExpression class for
the named Property.
Namespace:
NHibernate.ExpressionAssembly: NHibernate (in NHibernate.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Sub New ( _ propertyName As String, _ lo As Object, _ hi As Object _ ) |
C# |
---|
public BetweenExpression( string propertyName, Object lo, Object hi ) |
Visual C++ |
---|
public: BetweenExpression( String^ propertyName, Object^ lo, Object^ hi ) |
JavaScript |
---|
NHibernate.Expression.BetweenExpression = function(propertyName, lo, hi); |
Parameters
- propertyName
- Type: System..::.String
The name of the Property of the Class.
- lo
- Type: System..::.Object
The low value for the BetweenExpression.
- hi
- Type: System..::.Object
The high value for the BetweenExpression.