Now I get some model with all properties filled except one.
So I want to make a search in a database and see if there is some registry that matches all the properties values, in which case, get the last property value and keep it.
Now im doing a query wit query builder, giving it all where like this:
$query->Model::select()->where(field, $instance->field);
$query->where(field2, $instance->field2);
...
$query->get();
But I want to know if there some way to make a shortcut like...
$instance->get();