From 83b0da16dac720ca10b92aefc208612888d49feb Mon Sep 17 00:00:00 2001 From: luoyunchong Date: Sun, 1 May 2022 15:42:00 +0800 Subject: [PATCH] =?UTF-8?q?update=E6=A0=BC=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AOP.md | 2 +- With-Sql.md | 5 +++++ 修改.md | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/AOP.md b/AOP.md index 41f1254..cf40bac 100644 --- a/AOP.md +++ b/AOP.md @@ -158,7 +158,7 @@ fsql.Aop.ParseExpression += (s, e) => }; ``` -这个解析有点复杂,当 e.Expression 很复杂的时候,我们还提供了 e.FreeParse 方法,使用它相当于调用 FreeSql 内置表达式解析引擎,辅助您进行解析。 +这个解析有点复杂,当 `e.Expression` 很复杂的时候,我们还提供了 `e.FreeParse` 方法,使用它相当于调用 `FreeSql` 内置表达式解析引擎,辅助您进行解析。 ## 修改decimal默认特性 因为默认decimal只支持decimal(10,2),范围太小,我们可以全局修改decimal类型的支持范围,比如支持decimal(18,6) diff --git a/With-Sql.md b/With-Sql.md index fd6fdba..83ff811 100644 --- a/With-Sql.md +++ b/With-Sql.md @@ -16,6 +16,11 @@ Define entity class: public decimal Point { get; set; } public Sex? Sex { get; set; } } + public enum Sex + { + Boy, + Girl + } public class TestClssDto { public string ID { get; set; } diff --git a/修改.md b/修改.md index e64262d..4f53274 100644 --- a/修改.md +++ b/修改.md @@ -1,6 +1,6 @@ **中文** | [English](Update-Data) -FreeSql 提供丰富的数据库更新功能,支持单条或批量更新,在特定的数据库执行还可以返回更新后的记录。 +`FreeSql` 提供丰富的数据库更新功能,支持单条或批量更新,在特定的数据库执行还可以返回更新后的记录。 ```csharp static IFreeSql fsql = new FreeSql.FreeSqlBuilder()