update

28810
2019-12-30 19:11:05 +08:00
parent d3a7bfbaea
commit fa0eb2f7bb
12 changed files with 13 additions and 13 deletions

2
AOP.md

@@ -113,7 +113,7 @@ fsql.Aop.ParseExpression = (s, e) => {
- [《性能》](https://github.com/2881099/FreeSql/wiki/%e6%80%a7%e8%83%bd)
* [《CodeFirst模式开发介绍》](https://github.com/2881099/FreeSql/wiki/CodeFirst)
* [《CodeFirst模式之一实体特性》](https://github.com/2881099/FreeSql/wiki/%e5%ae%9e%e4%bd%93%e7%89%b9%e6%80%a7)
* [《CodeFirst模式之二外部配置实体](https://github.com/2881099/FreeSql/wiki/FluentApi)
* [《CodeFirst模式之二FluentApi](https://github.com/2881099/FreeSql/wiki/FluentApi)
* [《CodeFirst模式之三自定义特性》](https://github.com/2881099/FreeSql/wiki/%e8%87%aa%e5%ae%9a%e4%b9%89%e7%89%b9%e6%80%a7)
* [《CodeFirst模式之四类型映射》](https://github.com/2881099/FreeSql/wiki/%e7%b1%bb%e5%9e%8b%e6%98%a0%e5%b0%84)
* [《CodeFirst模式之五迁移结构》](https://github.com/2881099/FreeSql/wiki/CodeFirst#%e8%bf%81%e7%a7%bb%e7%bb%93%e6%9e%84)

@@ -43,7 +43,7 @@ var t2 = fsql.DbFirst.GetTablesByDatabase(fsql.DbFirst.GetDatabases()[0]);
* [《CodeFirst模式开发介绍》](https://github.com/2881099/FreeSql/wiki/CodeFirst)
* [《CodeFirst模式之一实体特性》](https://github.com/2881099/FreeSql/wiki/%e5%ae%9e%e4%bd%93%e7%89%b9%e6%80%a7)
* [《CodeFirst模式之二外部配置实体](https://github.com/2881099/FreeSql/wiki/FluentApi)
* [《CodeFirst模式之二FluentApi](https://github.com/2881099/FreeSql/wiki/FluentApi)
* [《CodeFirst模式之三自定义特性》](https://github.com/2881099/FreeSql/wiki/%e8%87%aa%e5%ae%9a%e4%b9%89%e7%89%b9%e6%80%a7)
* [《CodeFirst模式之四类型映射》](https://github.com/2881099/FreeSql/wiki/%e7%b1%bb%e5%9e%8b%e6%98%a0%e5%b0%84)
* [《CodeFirst模式之五迁移结构》](https://github.com/2881099/FreeSql/wiki/CodeFirst#%e8%bf%81%e7%a7%bb%e7%bb%93%e6%9e%84)

@@ -18,11 +18,11 @@ fsql.CodeFirst
FluentApi 的命名与特性保持一致,有关说明请移步参考:[《实体特性说明》](https://github.com/2881099/FreeSql/wiki/%e5%ae%9e%e4%bd%93%e7%89%b9%e6%80%a7)
> v1.1 增加扩展包 FreeSql.Extensions.EfCoreFluentApi方便 EfCore 使用者过渡,使用方法接近 EfCore
> v1.1 增加扩展包 [FreeSql.Extensions.EfCoreFluentApi](https://github.com/2881099/FreeSql/tree/master/Extensions/FreeSql.Extensions.EfCoreFluentApi),方便 EfCore 使用者过渡,使用方法接近 EfCore
## 优先级
数据库特性 > 实体特性 > FluantApi配置特性 > Aop配置特性
数据库特性 > 实体特性 > FluentApi配置特性 > Aop配置特性
## 参考资料

@@ -42,7 +42,7 @@ FreeSql是一个功能强大的NETStandard库用于对象关系映射程序(O
* [DbContext](https://github.com/2881099/FreeSql/wiki/DbContext)
* [CodeFirst](https://github.com/2881099/FreeSql/wiki/CodeFirst)
* [实体特性!!](https://github.com/2881099/FreeSql/wiki/%e5%ae%9e%e4%bd%93%e7%89%b9%e6%80%a7)
* [外部配置实体](https://github.com/2881099/FreeSql/wiki/FluentApi)
* [FluentApi](https://github.com/2881099/FreeSql/wiki/FluentApi)
* [自定义特性](https://github.com/2881099/FreeSql/wiki/%e8%87%aa%e5%ae%9a%e4%b9%89%e7%89%b9%e6%80%a7)
* [类型映射](https://github.com/2881099/FreeSql/wiki/%e7%b1%bb%e5%9e%8b%e6%98%a0%e5%b0%84)
* [导航配置!!](https://github.com/2881099/FreeSql/wiki/%e5%ae%9e%e4%bd%93%e5%85%b3%e7%b3%bb)

@@ -30,7 +30,7 @@
* [DbContext](https://github.com/2881099/FreeSql/wiki/DbContext)
* [CodeFirst](https://github.com/2881099/FreeSql/wiki/CodeFirst)
* [实体特性!!](https://github.com/2881099/FreeSql/wiki/%e5%ae%9e%e4%bd%93%e7%89%b9%e6%80%a7)
* [外部配置实体](https://github.com/2881099/FreeSql/wiki/FluentApi)
* [FluentApi](https://github.com/2881099/FreeSql/wiki/FluentApi)
* [自定义特性](https://github.com/2881099/FreeSql/wiki/%e8%87%aa%e5%ae%9a%e4%b9%89%e7%89%b9%e6%80%a7)
* [类型映射](https://github.com/2881099/FreeSql/wiki/%e7%b1%bb%e5%9e%8b%e6%98%a0%e5%b0%84)
* [导航配置!!](https://github.com/2881099/FreeSql/wiki/%e5%ae%9e%e4%bd%93%e5%85%b3%e7%b3%bb)

@@ -24,7 +24,7 @@ FreeSql 除了支持基本的增删查改功能外,还支持基于现有数据
* [《CodeFirst模式开发介绍》](https://github.com/2881099/FreeSql/wiki/CodeFirst)
* [《CodeFirst模式之一实体特性》](https://github.com/2881099/FreeSql/wiki/%e5%ae%9e%e4%bd%93%e7%89%b9%e6%80%a7)
* [《CodeFirst模式之二外部配置实体](https://github.com/2881099/FreeSql/wiki/FluentApi)
* [《CodeFirst模式之二FluentApi](https://github.com/2881099/FreeSql/wiki/FluentApi)
* [《CodeFirst模式之三自定义特性》](https://github.com/2881099/FreeSql/wiki/%e8%87%aa%e5%ae%9a%e4%b9%89%e7%89%b9%e6%80%a7)
* [《CodeFirst模式之四类型映射》](https://github.com/2881099/FreeSql/wiki/%e7%b1%bb%e5%9e%8b%e6%98%a0%e5%b0%84)
* [《CodeFirst模式之五迁移结构》](https://github.com/2881099/FreeSql/wiki/CodeFirst#%e8%bf%81%e7%a7%bb%e7%bb%93%e6%9e%84)

@@ -267,7 +267,7 @@ FreeSql CodeFirst 支持将 c# 代码内的注释,迁移至数据库的备注
## 优先级
数据库特性 > 实体特性 > FluantApi配置特性 > Aop配置特性
数据库特性 > 实体特性 > FluentApi配置特性 > Aop配置特性
## 参考资料

@@ -10,7 +10,7 @@ fsql.CodeFirst.IsConfigEntityFromDbFirst = true;
## 优先级
数据库特性 > 实体特性 > FluantApi配置特性 > Aop配置特性
数据库特性 > 实体特性 > FluentApi配置特性 > Aop配置特性
## 参考资料

@@ -888,7 +888,7 @@ repos.DataFilter.Apply("name", a => a.Id > 1) 附加新的过滤器
## v0.1.6
- 修复 外部配置实体ConfigEntity 与 延时加载 冲突产生的 bug
- 修复 FluentApiConfigEntity 与 延时加载 冲突产生的 bug
## v0.1.5

@@ -31,7 +31,7 @@ Assert.Equal(result1.Count, result1.Count);
* [《CodeFirst模式开发介绍》](https://github.com/2881099/FreeSql/wiki/CodeFirst)
* [《CodeFirst模式之一实体特性》](https://github.com/2881099/FreeSql/wiki/%e5%ae%9e%e4%bd%93%e7%89%b9%e6%80%a7)
* [《CodeFirst模式之二外部配置实体](https://github.com/2881099/FreeSql/wiki/FluentApi)
* [《CodeFirst模式之二FluentApi](https://github.com/2881099/FreeSql/wiki/FluentApi)
* [《CodeFirst模式之三自定义特性》](https://github.com/2881099/FreeSql/wiki/%e8%87%aa%e5%ae%9a%e4%b9%89%e7%89%b9%e6%80%a7)
* [《CodeFirst模式之四类型映射》](https://github.com/2881099/FreeSql/wiki/%e7%b1%bb%e5%9e%8b%e6%98%a0%e5%b0%84)
* [《CodeFirst模式之五迁移结构》](https://github.com/2881099/FreeSql/wiki/CodeFirst#%e8%bf%81%e7%a7%bb%e7%bb%93%e6%9e%84)

@@ -24,7 +24,7 @@ class ModelAopConfigEntity {
## 优先级
数据库特性 > 实体特性 > FluantApi配置特性 > Aop配置特性
数据库特性 > 实体特性 > FluentApi配置特性 > Aop配置特性
## 参考资料

@@ -33,7 +33,7 @@ select.Master().WhereId(a => a.Id == 1).ToOne(); //强制读【主库】
- [《性能》](https://github.com/2881099/FreeSql/wiki/%e6%80%a7%e8%83%bd)
* [《CodeFirst模式开发介绍》](https://github.com/2881099/FreeSql/wiki/CodeFirst)
* [《CodeFirst模式之一实体特性》](https://github.com/2881099/FreeSql/wiki/%e5%ae%9e%e4%bd%93%e7%89%b9%e6%80%a7)
* [《CodeFirst模式之二外部配置实体](https://github.com/2881099/FreeSql/wiki/FluentApi)
* [《CodeFirst模式之二FluentApi](https://github.com/2881099/FreeSql/wiki/FluentApi)
* [《CodeFirst模式之三自定义特性》](https://github.com/2881099/FreeSql/wiki/%e8%87%aa%e5%ae%9a%e4%b9%89%e7%89%b9%e6%80%a7)
* [《CodeFirst模式之四类型映射》](https://github.com/2881099/FreeSql/wiki/%e7%b1%bb%e5%9e%8b%e6%98%a0%e5%b0%84)
* [《CodeFirst模式之五迁移结构》](https://github.com/2881099/FreeSql/wiki/CodeFirst#%e8%bf%81%e7%a7%bb%e7%bb%93%e6%9e%84)