[]
Finds items with keys greater than the specified value.
public virtual IndexQuery<T, TKey> FindGreater(TKey key, bool inclusive, Func<TKey, bool> keyPredicate, Order order)
| Type | Name | Description |
|---|---|---|
| TKey | key | Minimum key value to search for. |
| bool | inclusive | If true, the result includes items with the specified key value. Otherwise, the result only includes those with keys strictly greater than the specified value. |
| Func<TKey, bool> | keyPredicate | An optional condition that found items must satisfy. |
| Order | order | Optionally specifies the order of the key values to sort the result (Order.Unordered if sorting is not required). |
| Type | Description |
|---|---|
| IndexQuery<T, TKey> | An object enumerating all items whose key values are greater than the specified value. |