Apply a "between" constraint to the named property
Namespace:
NHibernate.ExpressionAssembly: NHibernate (in NHibernate.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Shared Function Between ( _ propertyName As String, _ lo As Object, _ hi As Object _ ) As AbstractCriterion |
C# |
---|
public static AbstractCriterion Between( string propertyName, Object lo, Object hi ) |
Visual C++ |
---|
public: static AbstractCriterion^ Between( String^ propertyName, Object^ lo, Object^ hi ) |
JavaScript |
---|
NHibernate.Expression.Expression.between = function(propertyName, lo, hi); |
Parameters
- propertyName
- Type: System..::.String
The name of the Property in the class.
- lo
- Type: System..::.Object
The low value for the Property.
- hi
- Type: System..::.Object
The high value for the Property.