Finds items containing any of the specified key values.

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

Syntax

C#
IndexQuery<T> FindKeys(
	IEnumerable keys,
	Order order
)
Visual Basic
Function FindKeys ( _
	keys As IEnumerable, _
	order As Order _
) As IndexQuery(Of T)

Parameters

keys
Type: System.Collections..::..IEnumerable
The key values to search for.
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 whose key values belong to the specified key value collection.

See Also