1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-16 17:03:32 +00:00

Merge pull request #1651 from thanhtranjs/develop

Add GroupBy to QuerySeter
This commit is contained in:
astaxie 2016-02-02 12:44:49 +08:00
commit 441f795a1a

View File

@ -148,6 +148,10 @@ type QuerySeter interface {
// add OFFSET value
// same as Limit function's args[0]
Offset(offset interface{}) QuerySeter
// add GROUP BY expression
// for example:
// qs.GroupBy("id")
GroupBy(exprs ...string) QuerySeter
// add ORDER expression.
// "column" means ASC, "-column" means DESC.
// for example: