I've datatable as follows
DataTable ex= new DataTable();
ex.Columns.Add("Object");
ex.Columns.Add("Found");
ex.Rows.Add("vase''s","True");
string keyword="vase''s";
DataRow [] drs = ex.Select("[Object] like '%" + keyword + "%'");
drs is always empty I've tried with equal I've the same results and I've tested in other frameworks I've the same also what's wrong in my select statement ?!
Update I realized that it's due to single quote is considered as one in the query statement but how can I do that search in a generic way