I have linked my DataGridView with a DataSet with all the values from one of my database tables. But what i want to do is filter my DataGridView to display certain values from my DataSet:
For example:
(Where EmployeeID = 4)
,
is there any way of doing this without changing my initial binding object?
//Initial datasource
dgv.DataSource = DataSet1.Table[0];
//Some filter code here to display DataSet1 where employeeID = 1
//Show these results in the dgv without changing the initial binding.