Order specifies how the records should be ordered.
(o ...setting.OrderOption)
| 53 | |
| 54 | // Order specifies how the records should be ordered. |
| 55 | func (sq *SettingQuery) Order(o ...setting.OrderOption) *SettingQuery { |
| 56 | sq.order = append(sq.order, o...) |
| 57 | return sq |
| 58 | } |
| 59 | |
| 60 | // First returns the first Setting entity from the query. |
| 61 | // Returns a *NotFoundError when no Setting was found. |
nothing calls this directly
no outgoing calls
no test coverage detected