Hi guys, this might be more of a kotlin question. ...
# exposed
g
Hi guys, this might be more of a kotlin question. But I'll try here anyways. Is there anyway to get the type of a star projection? I have a
Expression<*>
and want to return the related
QueryParameter
for it. For example if I have an
Expression<Int>
(which could be
Customers.age
for example), so then I would want
QueryParameter(someValue, IntColumnType()
. Is this even possible? Or is the approach I am taking just stupid?