I am creating Querry with this function:
How to set filter, that in search textbox will find item (data) in datagrid based on just few letters that I write in search.
For example, I have simple table with two columns (id, age), so I whant to find all age's in table that have number e.g. 2
Table1
ID | Age
1 | 21
2 | 31
3 | 24
Search: [___2_] SearchBtn (type number 2 and click Search button)
Than table1 have only this data
Table1
ID | Age
1 | 21
3 | 24
Realy thanks for help...