官网连接
https://www.donet5.com/home/Doc?typeId=2404
泛型方法
/// <summary>
/// 大数据写入(泛型方法)
/// </summary>
/// <param name="entitys"></param>
/// <returns></returns>
///代码中_db与官网文档中的db获取方式相同
public async Task<int> InsertBulk(List<TEntity> entitys)
{return await _db.CopyNew().Fastest<TEntity>().PageSize(100000).BulkCopyAsync(entitys);
}
连接字符串配置
MYSQL连接字符串中增加:
AllowLoadLocalInfile=true;
如有报错,按照报错信息在数据库执行SQL语句后重试