Options adds select option to the query
(options ...string)
| 250 | |
| 251 | // Options adds select option to the query |
| 252 | func (b SelectBuilder) Options(options ...string) SelectBuilder { |
| 253 | return builder.Extend(b, "Options", options).(SelectBuilder) |
| 254 | } |
| 255 | |
| 256 | // Columns adds result columns to the query. |
| 257 | func (b SelectBuilder) Columns(columns ...string) SelectBuilder { |