Building on this question: how to run query on dataset?
I'm trying to query a datatable from my dataset where the text contains a string, similar to the String.Contains
method or the sql LIKE operator.
Here's what I've tried so far:
private void textBox1_TextChanged(object sender, EventArgs e)
{
DataTable tbl = globals.UserDataSet.Tables[0];
DataRow[] tempDataRows = tbl.Select("USER_ID Like " + textBox1.Text + " OR THE_NAME Like " + textBox1.Text);
}
This gives a System.Data.SyntaxError error.
Is it possible to query a datatable for text containing a substring? Is there a better way of doing this?