for example the names are
- abdulah
- abdullah
- abdola
- abdollah
- S abdullah
- abdul
- aabdullah
Now for this I will create a Linq query in C#, the string for example is textString = "abdolah" in result I expect all of them.
var data = db.TableList.where(a=>a.Name.Contains(textString).ToList();
so the question is how or is there any built in library for comparing names in .Net

