``` transaction { addLogger(StdOutSqlL...
# exposed
v
Copy code
transaction {
            addLogger(StdOutSqlLogger)
            Product.new(12) {
                sku = 3020
                name = "Nintendo Swich"
                price = 299.99f
                description = "New kid on the block"
                manufacturer = "Nintendo"
                model = "N001"
                type = "Electronics"
                image = "<img src='url'>"
                lastUpdated = DateTime.now()
                categories = SizedCollection(listOf(Category.new(12) { "Portable Gaming" }))
            }

        }