This is wrong, the dataTable.Select returns the array of rows.
So your code should be
DataRow[] rows = dataTable.Select("expression");
In case you want to filter and keep the dataTable then write something like this
dataTable.DefaultView.RowFilter = "expression";
Thanks