mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-08-25 01:14:33 +08:00
Add unit test
This commit is contained in:
parent
35b027319e
commit
0d54cda30a
@ -240,6 +240,12 @@ namespace OrmTest
|
|||||||
{
|
{
|
||||||
throw new Exception("unit error");
|
throw new Exception("unit error");
|
||||||
}
|
}
|
||||||
|
var listxxxx2 = db.Queryable<SchoolA>()
|
||||||
|
.Includes(it => it.RoomList)
|
||||||
|
.LeftJoin<StudentA>((x, y) => (x.SchoolId == y.SchoolId))
|
||||||
|
//.LeftJoin<BookA>((x, y, z) => y.SchoolId == y.SchoolId)
|
||||||
|
.Sum(x=>x.SchoolId);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public class UnitView01
|
public class UnitView01
|
||||||
|
Loading…
Reference in New Issue
Block a user