0611163
0611163
Used for batch insert by one SQL statement. issue: [https://github.com/DapperLib/Dapper/issues/1817](https://github.com/DapperLib/Dapper/issues/1817) Myself Test Engineering:https://github.com/0611163/Dapper.LiteSql --> PostgreSQLTest --> public void Test2InsertList() --> conn.Execute(strSql.ToString(), ToDynamicParameters(parameters), _tran)
When there are too many parameters, parameterized insertion has performance problems. `bool add = !command.Parameters.Contains(name);` When the count of command.parameters is large, the performance is poor. Used for batch insert...
改进:当break_attr_limit大于-1时,折成 属性数/break_attr_limit 行
比如我设置的是7,当我有14个属性,能不能只折成两行?而不是一个属性一行?