Add unit test

This commit is contained in:
sunkaixuan 2022-08-26 00:07:01 +08:00
parent 0bf3c69258
commit ba8e0460fd

View File

@ -44,9 +44,13 @@ namespace OrmTest
ScheduleId=1,
SysUserId=1
}).ExecuteCommand();
db.MappingTables = new MappingTableList();
db.MappingColumns = new MappingColumnList();
db.DeleteNav<ScheduleEntity>(x => true)
.Include(x => x.SysUsers.Where(u => u.Id == 1).ToList()) // B表
.ExecuteCommand();
}
}