"Like" query in adapter c#

2k Views Asked by At

I have a data adapter that was created from my data set. i want to do this query:

Select Body WHERE Body Like '%@INPUTTEXT%'.

how can i do it? i want the "@INPUTTEXT" to be a parameter but because of the "' " it's a simple text...

3

There are 3 best solutions below

0
On BEST ANSWER

WHERE BODY Like '%' + @inputtext + '%'

0
On

I've done this before to do what you're asking:

string cmdText = "select * from table where column like @INPUTTEXT";
SqlConnection conn = new SqlConnection(connString);
SqlCommand cmd = new SqlCommand(cmdText,conn);
cmd.Parameters.Add(new SqlParameter("@INPUTTEXT", string.Format("%{0}%",INPUTTEXT)));
0
On

or in Linq

dc.Body.where(a+> a.body.contains("InputText")).Select(a=>a.body).ToList();