Developer, Former MVP, now at Microsoft - Best of 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013
var results = from o in dataSet1.Tables[0].AsEnumerable() where o.Field<string>("City" ) == "Hove" select o;dataGridView1.DataSource = results.AsDataView();