internal override IEnumerable <IndexNode> ExecuteIndex(IndexService indexer, CollectionIndex index)
 {
     return(indexer
            .FindAll(index, Query.Ascending)
            .Where(x => x.Key.IsString && x.Key.AsString.Contains(_value)));
 }
Beispiel #2
0
 internal override IEnumerable <IndexNode> ExecuteIndex(IndexService indexer, CollectionIndex index)
 {
     return(indexer
            .FindAll(index, _order)
            .Where(i => _func(i.Key)));
 }