Add unit test

This commit is contained in:
sunkaixuan 2023-06-06 18:03:32 +08:00
parent 97499b40fb
commit 8fc1ef8b50

View File

@ -153,6 +153,13 @@ namespace OrmTest
{
throw new Exception("unit error");
}
var list10 = db.SqlQueryable<Student_004>("select * from [Student_005]")
.Includes(x => x.school_001)
.Select(x=>new {
xxx= x.school_001
})
.ToList();
}