how can implement "like" sql command whit filter property of bindingSource component?
C#
2
Posts
2
Posters
0
Views
1
Watching
-
hello all ... in a program i show data (in db) via tableAdapter and BindingSource .... in search part i used filter BindingSource property ,but i don't know how can impliment "like" sql command whit it?
:rose: Hi. You may found the answer.But...
BindingSource1.Filter="Name Like'"+textBox1.Text+"'";
And also this
BindingSource1.Filter="Name Like'"+textBox1.Text+"%'";
:rose:
CanI