I have the following enumeration that is stored in the database as a String:
enum class Status {
PENDING, ACCEPTED, REJECTED
}
And the following Table class:
object Examples : Table("examples") {
val id = integer("id")
val status = enumerationByName("status", 100, Status::class)
override val primaryKey = PrimaryKey(id)
}
When I use the following orderBy in my exposed query it is sorted alphabetically (ACCEPTED first).
Examples.selectAll().orderBy(Table.status to SortOrder.ASC)
But I need a different order; PENDING should be first, then ACCEPTED, then REJECTED.
How can I implement this? I am using a mysql database.
I tried the following, but it's not compiling and I do not know what is wrong.
.orderBy(
Case(Examples.status)
.When(Status.PENDING).Then(1)
.When(Status.ACCEPTED).Then(2)
.When(Status.REJECTED).Then(3)
.Else(3)
)
Here's how you can sort in JetBrains/Exposed in general