Eager loading is not respecting the order of my relationships?
In my DAO definition, I have defined an order for my relationship according to the example here:
https://www.jetbrains.com/help/exposed/dao-relationships.html#ordered-reference
When I lazily access my relationship, this works as expected. However, when I use
load
to eagerly load this relationship up-front, it entirely disregards my defined order. This has been confirmed with a sql logger, in which no ORDER BY is added to the SQL query.
Is this known limitation and, if so, are there any workarounds?