PredicateBuilder Class
Namespace: Hazelcast.Query
Assembly: Hazelcast.Net.dll
Builds a predicate.
public class PredicateBuilder
Inherited Members
Methods
Name | Description |
---|---|
IsBetween(object, object) | Succeeds if the target value is between the specified inclusive bounds. |
IsEqualTo(object) | Succeeds if the target value is equal to the specified value. |
IsGreaterThan(object) | Succeeds if the target value is greater than the specified value. |
IsGreaterThanOrEqualTo(object) | Succeeds if the target value is greater than, or equal to, the specified value. |
IsILike(string) | Succeeds if the target value matches the specified case-insensitive pattern. |
IsIn(params object[]) | Succeeds if the target value is equal to one of the specified values. |
IsLessThan(object) | Succeeds if the target value is less than the specified value. |
IsLessThanOrEqualTo(object) | Succeeds if the target value is less than, or equal to, the specified value. |
IsLike(string) | Succeeds if the target value matches the specified case-sensitive pattern. |
IsNotEqualTo(object) | Succeeds if the target value is not equal to the specified value. |
Matches(string) | Succeeds if the target value matches the specified regular expression. |