I want search a keyword from a Textbox
in access file with C# and DataGridView
, my code is below but has problem with error "Missing operand";
BindingSource bs = new BindingSource();
bs.DataSource = dataGridView1.DataSource;
bs.Filter = "select * FROM book WHERE onvan like '*" + textBox1.Text + "*'";
dataGridView1.DataSource = bs;