mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-10-15 18:55:07 +08:00
Update README.md
This commit is contained in:
@@ -138,7 +138,6 @@ JoinType.Left,st.SchoolId==sc.Id
|
||||
.OrderBy(st=>st.Id,OrderByType.Desc)
|
||||
.OrderBy((st,sc)=>sc.Id,OrderByType.Desc)
|
||||
.Select((st, sc) => new ViewModelStudent { Name = st.Name, SchoolId = sc.Id }).ToList();
|
||||
```
|
||||
|
||||
var getAll = db.Queryable<Student, School>((st, sc) => new JoinQueryInfos(
|
||||
JoinType.Left,st.Id==sc.Id))
|
||||
|
Reference in New Issue
Block a user