Reputation: 6422
I'm looking for the SQL equivalent of LIKE '%text to search%'
in C#. Really just a small text searching engine I can use to check if a string is a match.
Upvotes: 1
Views: 140
Reputation: 32919
Did you take a look at regular expressions? Although, for simpler cases, you are just fine using methods like String.Contains.
Upvotes: 6