Hello!
Another question :)
Is there way to get SQL or PHQL query string from Phalcon\Mvc\Model\Criteria ?
For example:
$content = new users();
$criteria = $content->query();
How to get string "SELECT * FROM users" from $criteria ?
P.S. Yes, I want to use \Phalcon as query builder ;)