Finds items with string key values starting with the specified string.
Implements IIndexScanner(T).FindStartingWith(string,Func(string, bool),Order)
Assembly: C1.LiveLinq (in C1.LiveLinq.dll)
Syntax
C# |
---|
public IndexQuery<T, string> FindStartingWith( string value, Func<string, bool> keyPredicate, Order order ) |
Visual Basic |
---|
Public Function FindStartingWith ( _ value As String, _ keyPredicate As Func(Of String, Boolean), _ order As Order _ ) As IndexQuery(Of T, String) |
Parameters
- value
- Type: System..::..String
The string to search for as the beginning of key value strings.
- keyPredicate
- Type: System..::..Func<(Of <(<'String, Boolean>)>)>
An optional condition that found items must satisfy.
- order
- Type: C1.LiveLinq..::..Order
Optionally specifies the order of the key values to sort the result (Order.Unordered if sorting is not required).