I'm trying to select rows from a datatable that a have a datetime column that contains a certain dd/mm In my windows forms application using C#, how can this be done? I know the expressions are similar to SQL.
DataType of column is datetime, for example: 09/03/2017 13:26:40
so far i have tried the below but it just returns an exception:
string selectExpression = "colDate LIKE '%09/03%'";
DataRow[] rows = dataTable.Select(selectExpression);