always i use this following code in mysql :
SELECT * FROM myobject
WHERE MATCH(`name`, `foo`, `bar`) AGAINST ('$search') IN BOOLEAN MODE
in phalcon ORM :
myobject::find([
"columns” => "id, name”,
"conditions" => "name LIKE ?1 OR foo LIKE ?1 OR bar LIKE ?1 ",
"bind" => [1 =>$search]
]);
How to find through all cloumns?
is this possible in phalcon ORM in a Quick way?
Thanks:)