mirror of
https://github.com/dotnetcore/FreeSql.git
synced 2026-02-12 19:30:59 +08:00
Updated Query Data (markdown)
@@ -107,7 +107,10 @@ fsql.Select<Region>().WhereDynamicFilter(dyfilter).ToList();
|
|||||||
//WHERE id = 1 AND (id = 2 OR id = 3)
|
//WHERE id = 1 AND (id = 2 OR id = 3)
|
||||||
```
|
```
|
||||||
|
|
||||||
> Dynamic sorting: `ISelect.OrderByPropertyName("Parent.Code")`
|
> Dynamic tablename:ISelect.AsTable((t, old) => $"{old}_201903")>
|
||||||
|
> Dynamic sorting:ISelect.OrderByPropertyName("Parent.Code")
|
||||||
|
> Dynamic return data:ISelect.ToDataTableByPropertyName(new string[] { "Parent.Code", "Id" })
|
||||||
|
> Dynamic include:ISelect.IncludeByPropertyName("Parent.Parent").IncludeByPropertyName("Parent.Childs")
|
||||||
|
|
||||||
## API
|
## API
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user