$post = $this->request->getPost("users");
$user = Users::findFirst(array(
'username = :username: and password = :password:',
'bind' => $post
));
If there are other methods to simplify the way where the query, for example, I hand in the $post directly can own puzzle of the where condition?