mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-20 18:48:09 +08:00
-
This commit is contained in:
@@ -45,7 +45,8 @@ namespace OrmTest.UnitTest
|
||||
var list = db.Queryable<Student, School,School>((st, sc,sc2) => new object[] {
|
||||
JoinType.Left,st.SchoolId==sc.Id,
|
||||
JoinType.Left,sc2.Id==sc.Id
|
||||
}).Where(st => st.Id > 0).ToList();
|
||||
}).Where(st => st.Id > 0)
|
||||
.Select<School>((st) =>new School() { Id=st.Id}).ToList();
|
||||
|
||||
var list3 = db.Queryable("Student", "st")
|
||||
.AddJoinInfo("School", "sh", "sh.id=st.schoolid")
|
||||
|
Reference in New Issue
Block a user