I not so good in Linq and I want to make a query to get the right data. I have a Datatable with this columns :

I want to get in the datatable by the Columns TIMEFROM and TIMETO get this = 10.12.2012 not 10.12.2012 00:00:00.
How I can do this: the name of my datatable is table.
MySqlCommand selectcommand = new MySqlCommand(sqlcommand, connection);
MySqlDataAdapter adapter = new MySqlDataAdapter(selectcommand);
DataTable table = new DataTable(TABLE);
adapter.Fill(table);
table = table.AsEnumerable().Where(r => r.Field<int>("Activate") == 1).CopyToDataTable();
//i need the shorter form
connection.Open();
selectcommand.ExecuteReader();
return table;