diff --git a/Src/Asp.NetCore2/SqlSeverTest/UnitTest/UCustom012.cs b/Src/Asp.NetCore2/SqlSeverTest/UnitTest/UCustom012.cs index b4d4097bb..8c065190f 100644 --- a/Src/Asp.NetCore2/SqlSeverTest/UnitTest/UCustom012.cs +++ b/Src/Asp.NetCore2/SqlSeverTest/UnitTest/UCustom012.cs @@ -136,9 +136,10 @@ namespace OrmTest var list4=db.Queryable() .LeftJoin((x, y) => (x.SchoolId == y.SchoolId)) .LeftJoin((x,y,z)=>y.SchoolId==y.SchoolId) - .Select((x,y,z) => new UnitView01() + .Select((x,y) => new UnitView01() { Name=x.SchoolName, + Id="1" },true).ToList(); }