Add GroupBy to QuerySeter

Adds support for GroupBy to QuerySeter SELECT operations.
This commit is contained in:
Peter Fern
2015-01-10 15:25:22 +11:00
parent 5d8187d005
commit 3731088b4a
5 changed files with 59 additions and 3 deletions

View File

@@ -67,6 +67,7 @@ type QuerySeter interface {
SetCond(*Condition) QuerySeter
Limit(interface{}, ...interface{}) QuerySeter
Offset(interface{}) QuerySeter
GroupBy(...string) QuerySeter
OrderBy(...string) QuerySeter
RelatedSel(...interface{}) QuerySeter
Count() (int64, error)