Datatable をフィルター処理したいのですが、動作しますが、DateTime を検索するとエラーが発生します。
これが私のコードです。私は何をしたのですか?
DataTable tb = DataBaseManager.GetRadiusDataTable(radiusconnectionstring, "marksullivan");
DataRow[] filteredRows = tb.Select("AcctStartTime LIKE '%" + searchstring + "%' OR AcctStopTime LIKE '%" + searchstring + "%' OR FramedIPAddress LIKE '%" + searchstring + "%'");
tb = filteredRows.CopyToDataTable();
this.ListView.DataSource = tb;
this.ListView.DataBind();
AcctStartTime:datetime AcctStopTime :datetime FramedIPAddress : varchar
The error: The Operation 'Like' could not to System.DateTime and System.String execute.
これどうやってするの?