Add unit test

This commit is contained in:
sunkaixuan 2022-11-29 01:58:28 +08:00
parent f33875381f
commit 59795c21b0

View File

@ -363,6 +363,12 @@ namespace OrmTest
{
Name = x.School_Name,
}, true).ToList();
var list10 = db.Queryable<SchoolA>()
.Select(x=>new SchoolA()
{
CityId=x.RoomList.Count()
}, true).ToList();
}
public class UnitView01