Currently the filter appears to only search by StartsWith. Consider creating a tokeniser that allows searching of starts of parts of words. eg "Jo D" would accept the name "John Doe".
Look at using a Trie to do this?
Also needs to be more responsive for large data sets. Potentially applying Rx here too.
Currently the filter appears to only search by StartsWith. Consider creating a tokeniser that allows searching of starts of parts of words. eg "Jo D" would accept the name "John Doe".
Look at using a Trie to do this?
Also needs to be more responsive for large data sets. Potentially applying Rx here too.