2

Is it possible to sort on a field in a joined table? For instance, if I want something like:

(modules, pagination) <- query @Module
    |> innerJoin @User (#userId, #id)
    |> orderByJoinedTable #email
    |> paginate

Is this currently possible?

Chris Schankula
  • 303
  • 1
  • 6

1 Answers1

2

This is currently not possible. You would need to use a handwritten sql query for this using sqlQuery

Marc Scholten
  • 1,351
  • 3
  • 5