Limit ALL allows to access all records with limit
()
| 379 | |
| 380 | // Limit ALL allows to access all records with limit |
| 381 | func (b SelectBuilder) RemoveLimit() SelectBuilder { |
| 382 | return builder.Delete(b, "Limit").(SelectBuilder) |
| 383 | } |
| 384 | |
| 385 | // Offset sets a OFFSET clause on the query. |
| 386 | func (b SelectBuilder) Offset(offset uint64) SelectBuilder { |