Would be nice to be able to write something like this: ```kotlin suspend fun myCoroutineScope() = session.transaction { coroutineScope { listOf( async { repository.insert(1) }, async { repository.insert(5) }, ).awaitAll() } } ```