从DataTable中删除不被控件支持的字段类型
摘要:
DataTable dt = DB.GetDataTable(sql); //从dt中删除不被控件支持的字段类型 for (int i = 0; i < dt.Columns.Count; i++) { Type tp=dt.Columns[i].DataType; if (tp == typeof 阅读全文
posted @ 2019-06-12 15:47 mol1995 阅读(122) 评论(0) 推荐(0) 编辑