Is there a better way to build a base query that w...
# exposed
r
Is there a better way to build a base query that will then be shared with other queries without having to wrap it in a transaction? example
val baseQuery = transaction{ Users.slice(id) }
fun userIdList() { transaction{ baseQuery.select{ … }}
Or are
transactions
“costs” negligible?