ByStatus orders the results by the status field.
(opts ...sql.OrderTermOption)
| 169 | |
| 170 | // ByStatus orders the results by the status field. |
| 171 | func ByStatus(opts ...sql.OrderTermOption) OrderOption { |
| 172 | return sql.OrderByField(FieldStatus, opts...).ToFunc() |
| 173 | } |
| 174 | |
| 175 | // ByName orders the results by the name field. |
| 176 | func ByName(opts ...sql.OrderTermOption) OrderOption { |
nothing calls this directly
no outgoing calls
no test coverage detected