Свойство | Type | Description | |
---|---|---|---|
Max | object | ||
Min | object |
Méthode | Description | |
---|---|---|
BetweenExpression ( string property, object min, object max ) : System |
PropertyValue <= Property <= PropertyValue2
|
|
BetweenExpression ( string property, object min, object max, bool trueOrNot ) : System |
PropertyValue <= Property <= PropertyValue2
|
|
Invert ( ) : IExpression |
Produces an expression that is the exact opposite of this expression. The new expression should exclude everything this one includes, and include everything this one excludes.
|
|
ToString ( ) : string |
public BetweenExpression ( string property, object min, object max ) : System | ||
property | string | The data class' property/field being compared. /// May not be null. |
min | object | The minimum acceptable value. May not be null. |
max | object | The maximum acceptable value. May not be null. |
Résultat | System |
public BetweenExpression ( string property, object min, object max, bool trueOrNot ) : System | ||
property | string | The data class' property/field being compared. /// May not be null. |
min | object | The minimum acceptable value. May not be null. |
max | object | The maximum acceptable value. May not be null. |
trueOrNot | bool | True means look for matches (I.E. ==), /// false means look for non-matches (I.E. !=) |
Résultat | System |