From 62b6e93910263bf2cf98ae6b239bd44eae3ad48e Mon Sep 17 00:00:00 2001 From: 28810 <28810@YEXIANGQIN> Date: Tue, 11 Aug 2020 23:48:58 +0800 Subject: [PATCH] update --- API.md | 2 +- Repository.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/API.md b/API.md index 3dc488f..6a13bd5 100644 --- a/API.md +++ b/API.md @@ -73,7 +73,7 @@ | Attach | - | IEnumerable\ | 批量附加实体到状态管理 | | AttachOnlyPrimary | - | TEntity | 只附加实体的主键数据到状态管理 | | [SaveMany](https://github.com/2881099/FreeSql/wiki/%E8%81%94%E7%BA%A7%E4%BF%9D%E5%AD%98#savemany) | - | TEntity, string | 保存实体的指定 ManyToMany/OneToMany 导航属性(完整对比) | -| BeginEdit | - | List\ | 准备编辑一个 List 实体 | +| [BeginEdit](https://github.com/dotnetcore/FreeSql/wiki/%E6%B7%BB%E5%8A%A0%E6%88%96%E4%BF%AE%E6%94%B9#3beginedit-%E6%89%B9%E9%87%8F%E7%BC%96%E8%BE%91) | - | List\ | 准备编辑一个 List 实体 | | EndEdit | int | 无 | 完成编辑数据,进行保存动作 | > 状态管理,可实现 Update 只更新变化的字段(不更新所有字段),灵活使用 Attach 和 Update 用起来非常舒服。 diff --git a/Repository.md b/Repository.md index 1be1a8f..75e6868 100644 --- a/Repository.md +++ b/Repository.md @@ -169,7 +169,7 @@ SqlServer 提供的 output inserted 特性,在表使用了自增或数据库 | Attach | - | IEnumerable\ | 批量附加实体到状态管理 | | AttachOnlyPrimary | - | TEntity | 只附加实体的主键数据到状态管理 | | [SaveMany](https://github.com/2881099/FreeSql/wiki/%E8%81%94%E7%BA%A7%E4%BF%9D%E5%AD%98#savemany) | - | TEntity, string | 保存实体的指定 ManyToMany/OneToMany 导航属性(完整对比) | -| BeginEdit | - | List\ | 准备编辑一个 List 实体 | +| [BeginEdit](https://github.com/dotnetcore/FreeSql/wiki/%E6%B7%BB%E5%8A%A0%E6%88%96%E4%BF%AE%E6%94%B9#3beginedit-%E6%89%B9%E9%87%8F%E7%BC%96%E8%BE%91) | - | List\ | 准备编辑一个 List 实体 | | EndEdit | int | 无 | 完成编辑数据,进行保存动作 | > 状态管理,可实现 Update 只更新变化的字段(不更新所有字段),灵活使用 Attach 和 Update 用起来非常舒服。