I have an unique field in my table that is not ID. Is there something like find by id method, but for finding on another field, which would return me an ORM model instance? If I use find()->where('unique_field' => 'unique_value') it returns me an Orm\Query object ...
Thanks