I have build a query which then will be used as subquery. So it is needed to be transfromed to sql. When I call toSql method it shows me such sql query
"select * from `product_variant_values` where
(`option_id` = ? and `value_id` = ?)
or (`option_id` = ? and `value_id` = ?)
or (`option_id` = ? and `value_id` = ?)"
But I want so that instead of ? signs there will be real arguments. How can I do this?
