1 comment

[ 5.8 ms ] story [ 13.0 ms ] thread
I find it harder to read then plain SQL.

    You do it like this:
    $base->find('user')->whereEqual('is_verified', 1)->orderDesc('id')->read();

    I do it like this:
    $myDb->find('SELECT * FROM user WHERE is_verified=1 ORDER BY id DESC');