.net批量写入数据到SqlServer
不说废话,直接代码,不懂就问.
using System.Data;
using System.Data.SqlClient;
using System.Diagnostics;
//entity 是你要写入的数据
static void InsertTwo(List<表名> entity)
{
//统计时间用的,可以不要
Stopwatch sp = new Stopwatch();
//连接数据库
var StrConn = System.Configuration.Configuratio
原创
2020-07-16 14:44:10 ·
311 阅读 ·
0 评论