BySlaveKey orders the results by the slave_key field.
(opts ...sql.OrderTermOption)
| 189 | |
| 190 | // BySlaveKey orders the results by the slave_key field. |
| 191 | func BySlaveKey(opts ...sql.OrderTermOption) OrderOption { |
| 192 | return sql.OrderByField(FieldSlaveKey, opts...).ToFunc() |
| 193 | } |
| 194 | |
| 195 | // ByWeight orders the results by the weight field. |
| 196 | func ByWeight(opts ...sql.OrderTermOption) OrderOption { |
nothing calls this directly
no outgoing calls
no test coverage detected