[]
Finds items with keys less than the specified value.
Implements IIndexScanner(T).FindLess(object,bool,Order)
public IndexQuery<T> FindLess(object key, bool inclusive, Order order)
| Type | Name | Description |
|---|---|---|
| object | key | Maximum 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 less than the specified 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 whose key values are less than the specified value. |