摘要:
public void SqlBulkCopy(string tablename, List list) { Type recordType = typeof(T); PropertyInfo[] patternPInfos = recordType.GetProperties(); using (SqlConnection conn2 = new SqlConnection(connString)) { using (SqlBulkCopy bcp = new... 阅读全文
posted @ 2014-03-11 13:07 文斌1988 阅读(552) 评论(0) 推荐(0) 编辑