From 9776fc27cae6e34fac545f60725ff7d19203c0c5 Mon Sep 17 00:00:00 2001 From: 28810 <28810@YEXIANGQIN> Date: Fri, 8 Mar 2019 16:15:40 +0800 Subject: [PATCH] update --- Repository.md | 7 ++++++- 分区分表.md | 9 +++++++-- 租户.md | 4 +++- 3 files changed, 16 insertions(+), 4 deletions(-) diff --git a/Repository.md b/Repository.md index 0d7b1c7..e296da6 100644 --- a/Repository.md +++ b/Repository.md @@ -68,7 +68,10 @@ var logRepository = fsql.GetGuidRepository(null, oldname => $"{oldname}_{Da 上面我们得到一个日志仓储按年月分表,使用它 CURD 最终会操作 Log_201903 表。 -注意:不能使用 CodeFirst 迁移分表,开发环境时仍然可以迁移 Log 表。 +注意事项: + +* 不能使用 CodeFirst 迁移分表,开发环境时仍然可以迁移 Log 表; +* 《延时加载》功能不可用; ## 兼容问题 @@ -100,5 +103,7 @@ Task InsertAsync(TEntity entity); - [《学习FreeSql之二:删除数据》](https://github.com/2881099/FreeSql/wiki/%e5%88%a0%e9%99%a4) - [《学习FreeSql之三:修改数据》](https://github.com/2881099/FreeSql/wiki/%e4%bf%ae%e6%94%b9) - [《学习FreeSql之四:查询数据》](https://github.com/2881099/FreeSql/wiki/%e6%9f%a5%e8%af%a2) +- [《优化之:延时加载》](https://github.com/2881099/FreeSql/wiki/%e5%bb%b6%e6%97%b6%e5%8a%a0%e8%bd%bd) +- [《优化之:贪婪加载》](https://github.com/2881099/FreeSql/wiki/%e8%b4%aa%e5%a9%aa%e5%8a%a0%e8%bd%bd) - [《分区、分表、分库》](https://github.com/2881099/FreeSql/wiki/%e5%88%86%e5%8c%ba%e5%88%86%e8%a1%a8) - [《租户》](https://github.com/2881099/FreeSql/wiki/%e7%a7%9f%e6%88%b7) \ No newline at end of file diff --git a/分区分表.md b/分区分表.md index 09b6cff..12b6582 100644 --- a/分区分表.md +++ b/分区分表.md @@ -48,7 +48,10 @@ var logRepository = fsql.GetGuidRepository(null, oldname => $"{oldname}_{Da 上面我们得到一个日志仓储按年月分表,使用它 CURD 最终会操作 Log_201903 表。 -注意:不能使用 CodeFirst 迁移分表,开发环境时仍然可以迁移 Log 表。 +注意事项: + +* 不能使用 CodeFirst 迁移分表,开发环境时仍然可以迁移 Log 表; +* 《延时加载》功能不可用; - [《租户》](https://github.com/2881099/FreeSql/wiki/%e7%a7%9f%e6%88%b7) - [《读写分离》](https://github.com/2881099/FreeSql/wiki/%e8%af%bb%e5%86%99%e5%88%86%e7%a6%bb) @@ -57,4 +60,6 @@ var logRepository = fsql.GetGuidRepository(null, oldname => $"{oldname}_{Da - [《仓储层Repository》](https://github.com/2881099/FreeSql/wiki/Repository) - [《学习FreeSql之一:添加数据》](https://github.com/2881099/FreeSql/wiki/%e6%b7%bb%e5%8a%a0) - [《学习FreeSql之二:删除数据》](https://github.com/2881099/FreeSql/wiki/%e5%88%a0%e9%99%a4) -- [《学习FreeSql之三:修改数据》](https://github.com/2881099/FreeSql/wiki/%e4%bf%ae%e6%94%b9) \ No newline at end of file +- [《学习FreeSql之三:修改数据》](https://github.com/2881099/FreeSql/wiki/%e4%bf%ae%e6%94%b9) +- [《优化之:延时加载》](https://github.com/2881099/FreeSql/wiki/%e5%bb%b6%e6%97%b6%e5%8a%a0%e8%bd%bd) +- [《优化之:贪婪加载》](https://github.com/2881099/FreeSql/wiki/%e8%b4%aa%e5%a9%aa%e5%8a%a0%e8%bd%bd) \ No newline at end of file diff --git a/租户.md b/租户.md index 6801030..cb669db 100644 --- a/租户.md +++ b/租户.md @@ -68,4 +68,6 @@ LEFT JOIN "TopicType_1" b ON a."TypeId" = b."Id" - [《仓储层Repository》](https://github.com/2881099/FreeSql/wiki/Repository) - [《学习FreeSql之一:添加数据》](https://github.com/2881099/FreeSql/wiki/%e6%b7%bb%e5%8a%a0) - [《学习FreeSql之二:删除数据》](https://github.com/2881099/FreeSql/wiki/%e5%88%a0%e9%99%a4) -- [《学习FreeSql之三:修改数据》](https://github.com/2881099/FreeSql/wiki/%e4%bf%ae%e6%94%b9) \ No newline at end of file +- [《学习FreeSql之三:修改数据》](https://github.com/2881099/FreeSql/wiki/%e4%bf%ae%e6%94%b9) +- [《优化之:延时加载》](https://github.com/2881099/FreeSql/wiki/%e5%bb%b6%e6%97%b6%e5%8a%a0%e8%bd%bd) +- [《优化之:贪婪加载》](https://github.com/2881099/FreeSql/wiki/%e8%b4%aa%e5%a9%aa%e5%8a%a0%e8%bd%bd)