Is it possible to concat two columns and then use ...
# exposed
a
Is it possible to concat two columns and then use that combined with an inList? E.g
area_code_column + phone_number_column inList listOf(...)
t
Does it work if add brackets?
Copy code
select { 
(area_code_column + phone_number_column) inList listOf(...)
}
a
No it doesn’t :/
Tried assigning to a variable and then using that but nope
t
The problem is that concat function is absent. I've created an issue about that https://github.com/JetBrains/Exposed/issues/509