How to do a STAR search in LINQ
- by aNui
I'm not sure about clarity of the STAR word.
I'm implementing a search method using linq-to-object in c#.
And I want to do a search with * (star) operator like most of search apps or web can do.
e.g.
If I typed "p*", results should be everything starting with "p".
And it should work for prefix star, suffix star or star in the middle.
And it…