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
c15b91904c
commit
f26e65edf5
@ -57,14 +57,14 @@ FROM
|
|||||||
WHERE
|
WHERE
|
||||||
([o].[Id] = @Id0)
|
([o].[Id] = @Id0)
|
||||||
```
|
```
|
||||||
### Feature2 : Include query
|
### Feature2 :Include Query、Insert、Delete and Update
|
||||||
```cs Include Query、Insert、Delete and Update
|
```cs
|
||||||
var list=db.Queryable<Test>()
|
var list=db.Queryable<Test>()
|
||||||
.Includes(x => x.Provinces,x=>x.Citys ,x=>x.Street)
|
.Includes(x => x.Provinces,x=>x.Citys ,x=>x.Street) //multi-level
|
||||||
.Includes(x => x.ClassInfo)
|
.Includes(x => x.ClassInfo)
|
||||||
.ToList();
|
.ToList();
|
||||||
|
|
||||||
db.InsertNav(list)
|
db.InsertNav(list) //Finer operation than EFCore's SaveChange
|
||||||
.Include(z1 => z1.SchoolA)
|
.Include(z1 => z1.SchoolA)
|
||||||
.ThenInclude(z1 => z1.RoomList)
|
.ThenInclude(z1 => z1.RoomList)
|
||||||
.Include(z1 => z1.Books)
|
.Include(z1 => z1.Books)
|
||||||
|
Loading…
Reference in New Issue
Block a user