mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 17:37:58 +08:00
Update README.md
This commit is contained in:
parent
ab3d1cf582
commit
c15b91904c
20
README.md
20
README.md
@ -58,11 +58,29 @@ WHERE
|
||||
([o].[Id] = @Id0)
|
||||
```
|
||||
### Feature2 : Include query
|
||||
```cs Include Query
|
||||
```cs Include Query、Insert、Delete and Update
|
||||
var list=db.Queryable<Test>()
|
||||
.Includes(x => x.Provinces,x=>x.Citys ,x=>x.Street)
|
||||
.Includes(x => x.ClassInfo)
|
||||
.ToList();
|
||||
|
||||
db.InsertNav(list)
|
||||
.Include(z1 => z1.SchoolA)
|
||||
.ThenInclude(z1 => z1.RoomList)
|
||||
.Include(z1 => z1.Books)
|
||||
.ExecuteCommand();
|
||||
|
||||
db.DeleteNav<Student>(it=>it.Id==1)
|
||||
.Include(z1 => z1.SchoolA)
|
||||
.ThenInclude(z1 => z1.RoomList) st
|
||||
.Include(z1 => z1.Books)
|
||||
.ExecuteCommand();
|
||||
|
||||
db.UpdateNav(list)
|
||||
.Include(z1 => z1.SchoolA)
|
||||
.ThenInclude(z1 => z1.RoomList)
|
||||
.Include(z1 => z1.Books)
|
||||
.ExecuteCommand();
|
||||
```
|
||||
|
||||
### Feature3 : Page query
|
||||
|
Loading…
Reference in New Issue
Block a user