diff --git a/Insert-Data.md b/Insert-Data.md index 1c8606f..b6aa396 100644 --- a/Insert-Data.md +++ b/Insert-Data.md @@ -76,7 +76,7 @@ When inserting large quantities of data, the internal logic is divided and execu After the execution of the split, when the external transaction is not provided, the internal transaction is opened to achieve insertion integrity. You can also set appropriate values through `BatchOptions`. -FreeSql adapts to the use of parameterization and non-parameterization of each data type. It is recommended to turn off the parameterization function for batch insertion and use `.NonoParameter()` to execute it. +FreeSql adapts to the use of parameterization and non-parameterization of each data type. It is recommended to turn off the parameterization function for batch insertion and use `.NoneParameter()` to execute it. ## 3. ExecuteSqlBulkCopy, ExecutePgCopy, ExecuteMySqlBulkCopy and ExecuteOracleBulkCopy diff --git a/添加.md b/添加.md index a74356a..e7f491f 100644 --- a/添加.md +++ b/添加.md @@ -74,7 +74,7 @@ var t2 = fsql.Insert(items).ExecuteAffrows(); 分割执行后,当外部未提供事务时,内部自开事务,实现插入完整性。也可以通过 BatchOptions 设置合适的值。 -FreeSql 适配了每一种数据类型参数化,和不参数化的使用。批量插入建议关闭参数化功能,使用 .NonoParameter() 进行执行。 +FreeSql 适配了每一种数据类型参数化,和不参数化的使用。批量插入建议关闭参数化功能,使用 .NoneParameter() 进行执行。 ## 3、ExecuteSqlBulkCopy、ExecutePgCopy、ExecuteMySqlBulkCopy、ExecuteOracleBulkCopy diff --git a/骚操作.md b/骚操作.md index fb558b2..96f9d05 100644 --- a/骚操作.md +++ b/骚操作.md @@ -22,7 +22,7 @@ INSERT INTO `tb_topic`(`Title`) VALUES('Title_1') 在 new FreeSqlBuilder().UseNoneParameter(true) 可以全局设置。 -在 单次 ISelect、IInsert、IDelete、IUpdate 上使用 NoneParameter() 设置单次生效。 +在 单次 IInsert、IUpdate 上使用 NoneParameter() 设置单次生效。 ---