DateTime dt = Convert.ToDateTime(monthList[i]);
                        //4.取得日期所屬的月份,並從相應的數據表中取得當日的所有打卡數據
                        this.myDataMember = "attend_mon" + dt.Month.ToString().Trim();
                        string filter = this.GetFilterString("card_date", dt.Year, dt.Month, dt.Day);
                        if (this.LoadDataTable(this.myDataMember, "*", this.myPrimaryKeyString, filter, null, "empl_index,card_code,card_date", null))
                        {
                            //取得當日異常ID卡考勤
                            this.LoadDataTable("attend_normal", "card_code,card_Date", new string[] { "card_code", "card_Date" }, filter, null, "card_code,card_Date", null);
                            //5.從attendDay打卡時間表中過濾相應日期的打卡資料.檢查並插入打卡資料到相應的表中
                            string year = dt.Year.ToString().Trim();
                            string month =dt.Month.ToString().Trim();
                            string day =dt.Day.ToString().Trim();                            dv.RowFilter = "checktime = " + year + month + day;
运行程序后,就是提示最后一句"无法在system.string 和 system.Int32 上执行"="操作"
   1. checktime是 字符型    
      最后一句应该怎么写就可以通过?