Working on an app where the LogDate column in the dataset is string. We load it into a DataView, filter, and pass it to a SQL report. If I sort by LogDate I get an ordering of 10,11,12,6,7,8,9...
Here's our DataView declaration:
Dim dailyTimeLogDV As New DataView(Me._timeActivityReportsDataSet.DailyLogShiftTimes, _dateExpr, "LogDate", DataViewRowState.CurrentRows)