[]
Finds items with string key values starting with the specified string.
Implements IIndexScanner(T).FindStartingWith(string,Func(string, bool),Order)
public IndexQuery<T, string> FindStartingWith(string value, Func<string, bool> keyPredicate, Order order)
Type | Name | Description |
---|---|---|
string | value | The string to search for as the beginning of key value strings. |
Func<string, bool> | keyPredicate | An optional condition that found items must satisfy. |
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, string> | An object enumerating all items whose key values are strings that have a beginning matching the specified string and satisfy the optional condition. |