[]
        
(Showing Draft Content)

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

FindStartingWith Method

FindStartingWith(string, Func<string, bool>, Order)

Finds items with string key values starting with the specified string.

Declaration
IndexQuery<T, string> FindStartingWith(string value, Func<string, bool> keyPredicate, Order order)
Parameters
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).

Returns
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.