mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-24 18:04:52 +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");
|
||||
}
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user