So I've searched fuzzy searching, the Levenshtein Distance Algorithm and I'm not sure if either are a true fit for what I'm doing. Please let me know your thoughts, if any...
How can I take a user's full name, and generate a list of similar names? I want to prevent a user from creating multiple accounts in an application by providing a "Hey are you sure none of these are you" as a final step before account creation.
I've found this article, but it's entirely SQL-based (http://stackoverflow.com/questions/988050/matching-records-based-on-person-name)
I'm using c# / Linq, SqlServer.
Thanks for your time!
Here is a link to a SOUNDEX implementation in .NET:
http://www.codeproject.com/KB/recipes/soundex.aspx
I haven't used it but it seems to be rated well