update

28810
2020-04-28 09:38:46 +08:00
parent 723261f766
commit 63eaf7f2a2

@@ -45,6 +45,18 @@ fsql.CodeFirst.ConfigEntity<实体类>(a => a
2、Navigate 设置的字符串是 类属性名,不是表 字段名!!!
# 检测导航属性
如何检测一个导航属性是否配置生效:
```csharp
var tbref = g.sqlite.CodeFirst
.GetTableByEntity(typeof(Edi))
.GetTableRef("Children", true);
```
GetTableRef(string propertyName, bool isThrow);
# 约定命名(无须指明 Navigate
### OneToOne 一对一