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

Namespace:  C1.LiveLinq.Indexing.Search
Assembly:  C1.LiveLinq (in C1.LiveLinq.dll)

Syntax

C#
IndexQuery<T> FindBetween(
	Object min,
	bool minInclusive,
	Object max,
	bool maxInclusive,
	Order order
)
Visual Basic
Function FindBetween ( _
	min As Object, _
	minInclusive As Boolean, _
	max As Object, _
	maxInclusive As Boolean, _
	order As Order _
) As IndexQuery(Of T)

Parameters

min
Type: System..::..Object
Minimum key value to search for.
minInclusive
Type: System..::..Boolean
If true, the result includes items with the minimum key value.
max
Type: System..::..Object
Maximum key value to search for.
maxInclusive
Type: System..::..Boolean
If true, the result includes items with the maximum key value.
order
Type: C1.LiveLinq..::..Order
Optionally specifies the order of the key values to sort the result (Order.Unordered if sorting is not required).

Return Value

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

See Also