update

28810
2020-04-22 15:59:27 +08:00
parent b6d30a8144
commit 5667d7446e
2 changed files with 2 additions and 4 deletions

4
API.md

@@ -7,13 +7,11 @@
| UseSlave | this | 设置从数据库,支持多个 |
| UseConnectionFactory | this | 设置自定义数据库连接对象(放弃内置对象连接池技术) |
| UseAutoSyncStructure | this | 【开发环境必备】自动同步实体结构到数据库,程序运行中检查实体创建或修改表结构 |
| UseSyncStructureToLower | this | 转小写同步结构,适用 PostgreSQL |
| UseSyncStructureToUpper | this | 转大写同步结构,适用 Oracle/达梦 |
| UseNoneCommandParameter | this | 不使用命令参数化执行,针对 Insert/Update也可临时使用 IInsert/IUpdate.NoneParameter() |
| UseGenerateCommandParameterWithLambda | this | 生成命令参数化执行,针对 lambda 表达式解析 |
| UseLazyLoading | this | 开启延时加载功能 |
| UseMonitorCommand | this | 监视全局 SQL 执行前后 |
| UseEntityPropertyNameConvert | this | 自动转换实体属性名称 Entity Property -\> Db Filed |
| UseNameConvert | this | 自动转换实体属性名称 Entity Property -\> Db Filed |
| Build\<T\> | IFreeSql\<T\> | 创建一个 IFreeSql 对象,注意:单例设计,不要重复创建 |
# IFreeSql

@@ -86,7 +86,7 @@ fsql.Delete<Blog>()
| UseGenerateCommandParameterWithLambda | this | 生成命令参数化执行,针对 lambda 表达式解析 |
| UseLazyLoading | this | 开启延时加载功能 |
| UseMonitorCommand | this | 监视全局 SQL 执行前后 |
| UseEntityPropertyNameConvert | this | 自动转换名称 Entity -\> Db |
| UseNameConvert | this | 自动转换名称 Entity -\> Db |
| Build\<T\> | IFreeSql\<T\> | 创建一个 IFreeSql 对象,注意:单例设计,不要重复创建 |
# ConnectionStrings