mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-22 20:13:41 +08:00
Add unit test
This commit is contained in:
@@ -240,6 +240,12 @@ namespace OrmTest
|
||||
{
|
||||
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
|
||||
|
Reference in New Issue
Block a user