Update README.md

This commit is contained in:
果糖网 2024-03-13 17:04:57 +08:00 committed by GitHub
parent 68e1c40462
commit 4d987249a3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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)