ByUserTasks orders the results by the user_tasks field.
(opts ...sql.OrderTermOption)
| 162 | |
| 163 | // ByUserTasks orders the results by the user_tasks field. |
| 164 | func ByUserTasks(opts ...sql.OrderTermOption) OrderOption { |
| 165 | return sql.OrderByField(FieldUserTasks, opts...).ToFunc() |
| 166 | } |
| 167 | |
| 168 | // ByUserField orders the results by user field. |
| 169 | func ByUserField(field string, opts ...sql.OrderTermOption) OrderOption { |
nothing calls this directly
no outgoing calls
no test coverage detected