mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-07-15 23:13:42 +08:00
Add unit test
This commit is contained in:
parent
53534458ec
commit
47ce0447fd
@ -80,7 +80,10 @@ namespace OrmTest
|
|||||||
.Where(whereFunc)
|
.Where(whereFunc)
|
||||||
.GroupBy(groupList).Having(having).Select(selector).ToList();
|
.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();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user