I'd like to make filter which looks like this :
(pseudo code)
SELECT * FROM Products WHERE
(`attribute_foo` LIKE 'bar' AND `attribute_bar` LIKE 'foo')
OR (`attribute_far` LIKE 'boo');
I know how to construct OR
condition by providing an array, but not the both.
thanks you