Add unit test

This commit is contained in:
sunkaixuan 2023-06-15 20:51:46 +08:00
parent 53534458ec
commit 47ce0447fd

View File

@ -80,7 +80,10 @@ namespace OrmTest
.Where(whereFunc)
.GroupBy(groupList).Having(having).Select(selector).ToList();
var data68 = db.QueryableByObject(type).AS("order","o")
.AddJoinInfo("order", "y", ObjectFuncModel.Create("Equals", "y.id", "o.id"), SqlSugar.JoinType.Left)
.Where(whereFunc)
.GroupBy(groupList).Having(having).Select(selector).ToList();
}
}
}