update

2881099
2022-06-29 10:22:14 +08:00
parent 1ba2714527
commit 455a4d51d5
2 changed files with 4 additions and 2 deletions

4
API.md

@@ -13,7 +13,9 @@
| UseGenerateCommandParameterWithLambda | this | 生成命令参数化执行,针对 lambda 表达式解析 |
| UseLazyLoading | this | 开启延时加载功能 |
| UseMonitorCommand | this | 监视全局 SQL 执行前后 |
| **UseNameConvert** | this | 转换实体、属性名称 Entity Property -\> Db Filed |
| UseMappingPriority | this | 指定映射优先级(默认 Aop < FluentApi < Attribute |
| **UseNameConvert** | this | 自动转换名称 Entity -\> Db |
| UseExitAutoDisposePool | this | 监听 AppDomain.CurrentDomain.ProcessExit/Console.CancelKeyPress 事件自动释放连接池 (默认true) |
| Build\<T\> | IFreeSql\<T\> | 创建一个 IFreeSql 对象注意单例设计不要重复创建 |
# IFreeSql

@@ -154,7 +154,7 @@ fsql.Delete<Blog>()
| UseLazyLoading | this | 开启延时加载功能 |
| UseMonitorCommand | this | 监视全局 SQL 执行前后 |
| UseMappingPriority | this | 指定映射优先级(默认 Aop < FluentApi < Attribute |
| UseNameConvert | this | 自动转换名称 Entity -\> Db |
| **UseNameConvert** | this | 自动转换名称 Entity -\> Db |
| UseExitAutoDisposePool | this | 监听 AppDomain.CurrentDomain.ProcessExit/Console.CancelKeyPress 事件自动释放连接池 (默认true) |
| Build\<T\> | IFreeSql\<T\> | 创建一个 IFreeSql 对象注意单例设计不要重复创建 |