Property | Type | Description | |
---|---|---|---|
Values | IEnumerable |
Method | Description | |
---|---|---|
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.
|
|
PropertyInListExpression ( string property, IEnumerable values ) : System |
Property is equal to one of the values in the given IEnumerable of values.
|
|
PropertyInListExpression ( string property, IEnumerable values, bool trueOrNot ) : System |
Property is equal to one of the values in the given IList of values.
|
public PropertyInListExpression ( string property, IEnumerable values ) : System | ||
property | string | The data class' property/field being compared. /// May not be null. |
values | IEnumerable | The values to check for. /// May not be null. An empty list will always mean "false". |
return | System |
public PropertyInListExpression ( string property, IEnumerable values, bool trueOrNot ) : System | ||
property | string | The data class' property/field being compared. /// May not be null. |
values | IEnumerable | The values to check for. /// May not be null. An empty list will always mean "false". |
trueOrNot | bool | True means look for matches (I.E. ==), /// false means look for non-matches (I.E. !=) |
return | System |