I have this
$robots = Robots::findFirst(3);
$robots->save();
so far so good, but I dont need all fields, so:
$robots = Robots::findFirst(3, array(
'columns' => 'id, name'
));
$robots->save();
this time ->save() fails. How to get its "complete" object?
Post fixed. Please read the Markdown FAQ for properly formatting code.