OrderBy adds ORDER BY expressions to the query.
(orderBys ...string)
| 264 | |
| 265 | // OrderBy adds ORDER BY expressions to the query. |
| 266 | func (b UpdateBuilder) OrderBy(orderBys ...string) UpdateBuilder { |
| 267 | return builder.Extend(b, "OrderBys", orderBys).(UpdateBuilder) |
| 268 | } |
| 269 | |
| 270 | // Limit sets a LIMIT clause on the query. |
| 271 | func (b UpdateBuilder) Limit(limit uint64) UpdateBuilder { |
no outgoing calls