Hi, i have a DataGridView that is popoulated (using linq) from a database (a typical clients table). So, let's say that the data is presented to the user and he decide to filter them with the City column = "London". To make things simple, i let him click in a cell of the city column that contains the word "London" and then to click a button so the DataGridView can be filtered and display only these rows that the City column contains this value. So i am doing it like this: var query = from DataGridViewRow
Read More...