[]
Finds items with key values in the interval between the specified values.
Implements IIndexScanner(T).FindBetween(object,bool,object,bool,Order)
public IndexQuery<T> FindBetween(object min, bool minInclusive, object max, bool maxInclusive, Order order)
| Type | Name | Description |
|---|---|---|
| object | min | Minimum key value to search for. |
| bool | minInclusive | If true, the result includes items with the minimum key value. |
| object | max | Maximum key value to search for. |
| bool | maxInclusive | If true, the result includes items with the maximum key value. |
| 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> | An object enumerating all items with key values within the specified limits. |