[]
        
(Showing Draft Content)

C1.LiveLinq.Indexing.Search.IIndexScanner-1.FindBetween

FindBetween Method

FindBetween(object, bool, object, bool, Order)

Finds items with key values in the interval between the specified values.

Declaration
IndexQuery<T> FindBetween(object min, bool minInclusive, object max, bool maxInclusive, Order order)
Parameters
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).

Returns
Type Description
IndexQuery<T>

An object enumerating all items with key values within the specified limits.