Hi, how can i use `inList` with subquery, ```val...
# exposed
b
Hi, how can i use
inList
with subquery,
Copy code
val universityIdsSubQuery = Users.slice(Users.univercityId).select { ... }
Universities.select { ... }.andWhere(Universities.id inList universityIdsSubQuery)
tried something like this but inList expects iterable
m
Maybe try out inSubQuery as inList requires actual values inputed
b
thank you 🙏