I have a query that is returning a single result and I m wondering if there s a way to access the properties of that result without having to loop through it since I am limiting it to a single result.
Here is my query:
$user = Model_User::find()
->where( email_address , Input::post( email_address ))
->where( password , Input::post( password ))
->limit(1);
The only way I ve found to access the results is to run the get()
method on $user
and loop through the result, but I figured I was missing something and that there was an easier way to return $user
as a single object that I can work with since I am limiting it to a single result.
What s the most efficient way to do this?