mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 08:37:25 +08:00
Update README.md
This commit is contained in:
parent
68e1c40462
commit
4d987249a3
@ -61,12 +61,14 @@ WHERE
|
||||
([o].[Id] = @Id0)
|
||||
```
|
||||
### Feature2 :Include Query、Insert、Delete and Update
|
||||
```cs
|
||||
//query by nav
|
||||
```cs
|
||||
|
||||
//Includes
|
||||
var list=db.Queryable<Test>()
|
||||
.Includes(x => x.Provinces,x=>x.Citys ,x=>x.Street) //multi-level
|
||||
.Includes(x => x.ClassInfo)
|
||||
.ToList();
|
||||
|
||||
//Includes+left join
|
||||
var list5= db.Queryable<Student_004>()
|
||||
.Includes(x => x.school_001, x => x.rooms)
|
||||
|
Loading…
Reference in New Issue
Block a user