Update unit test

This commit is contained in:
sunkaixuan
2022-07-03 01:00:09 +08:00
parent 739be17d45
commit 250dc0c23e
3 changed files with 6 additions and 0 deletions

View File

@@ -139,6 +139,7 @@
<Compile Include="UnitTest\UDelete.cs" />
<Compile Include="UnitTest\UFastest.cs" />
<Compile Include="UnitTest\UConfig.cs" />
<Compile Include="UnitTest\UOneManyMany.cs" />
<Compile Include="UnitTest\USplit.cs" />
<Compile Include="UnitTest\Models\TB_AdminUser.cs" />
<Compile Include="UnitTest\Models\TB_ClientConfig.cs" />

View File

@@ -31,6 +31,8 @@ namespace OrmTest
}
public static void Init()
{
UOneManyMany.init();
UNavDynamic111N.Init();
UCustomNavigate01.Init();
UCustom023.Init();

View File

@@ -35,6 +35,7 @@ namespace OrmTest
var list=db.Queryable<Student_001>()
.Includes(x => x.school_001, x => x.rooms)
.Where(x=>x.school_001.rooms.Any(z=>z.rooms.Any())).ToList();
if (list.Count() !=2)
@@ -43,6 +44,7 @@ namespace OrmTest
}
var list2 = db.Queryable<Student_001>()
.Includes(x => x.school_001, x => x.rooms)
.Where(x => x.school_001.rooms.Any(z =>
z.roomName== "北大01室" &&
z.rooms.Any())).ToList();
@@ -54,6 +56,7 @@ namespace OrmTest
}
var list3 = db.Queryable<Student_001>()
.Includes(x=>x.school_001,x=>x.rooms)
.Where(x => x.school_001.rooms.Any(z =>
z.roomName == "青华03室" &&
z.rooms.Any(c=>c.deskName== "青华03室_01"))).ToList();