Datatable Compute Method Convert string column to date
问题 I have a column in datatable having dates with format dd/MM/yyyy HH:mm . I fill the datatable using the code below which is common for more than 1 select statements so i cannot specify column and their datatype before filling the datatable. Any manipulation after filling the data is acceptable to me. data_adapt = New OracleDataAdapter(query, OraConn) dt = New DataTable data_adapt.Fill(dt) For paging i create a copy of the datatable using skip and take as below dtLineupCopy = New DataTable