Welcome Guest, Not a member yet? Register   Sign In
You must use the "set" method to update an entry.
#1

I am here again.
I want to use the save method of the model class


the code In my controller:

PHP Code:
$data $this->request->getPost();
$model = new \App\Models\MyModel();
$model->save($data); 


My Model:
Code:
protected $table      = 'user';
protected $primaryKey      = 'id_user';
protected $returnType = '\App\Entities\E_User';



the problem is the server returns
"You must use the "set" method to update an entry."
In the user guide the set method is used in database Builder class but not say nothing about the relationship between set and save methods.

so How can I use the save method.?
Reply


Messages In This Thread
You must use the "set" method to update an entry. - by Edel - 08-16-2017, 02:24 PM



Theme © iAndrew 2016 - Forum software by © MyBB