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.
I’m looking for the SQL equivalent of LIKE ‘%text to search%’ in C#. Really
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Did you take a look at regular expressions? Although, for simpler cases, you are just fine using methods like String.Contains.