```fun testFindAll(){ transaction { ...
# exposed
v
Copy code
fun testFindAll(){
        transaction {
            addLogger(StdOutSqlLogger)
            val product = Product.findById(12)
            product?.categories?.forEach { println(it) }
        }
    }