Updated 查询 (markdown)

2881099
2023-12-14 19:40:29 +08:00
parent 34330f3cd3
commit 7fb9e1b6d7

@@ -100,9 +100,12 @@ fsql.Select<Region>().WhereDynamicFilter(dyfilter).ToList();
//WHERE id = 1 AND (id = 2 OR id = 3)
```
> 动态表名ISelect.AsTable((t, old) => $"{old}_201903")>
> 动态表名ISelect.AsTable((t, old) => $"{old}_201903")
> 动态排序ISelect.OrderByPropertyName("Parent.Code")
> 动态返回ISelect.ToDataTableByPropertyName(new string[] { "Parent.Code", "Id" })
> 动态贪婪加载ISelect.IncludeByPropertyName("Parent.Parent").IncludeByPropertyName("Parent.Childs")
## API