Shawn A
08/21/2019, 2:16 PMalias
to create a sub-query and then using that sub-query in a join. It looks like once you use an alias
you can no longer reference the columns in the ResultRow
by the original table's columns. Keys in the ResultRow
from the alias look like org.jetbrains.exposed.sql.Alias.name
. Is there any way to avoid this? I have common mapping code that assumes it can use the table class to reference columns. e.g (DataSourceTable.name
).tapac
08/21/2019, 10:07 PMShawn A
08/21/2019, 10:32 PMselect * from (sub-query) join other-table on ...