Welcome Guest, Not a member yet? Register   Sign In
[SOLVED] CI4 Entity using datamap to Model-Save
#2

Did you create an Entity folder in the app folder?
If you did then you access them like this.
PHP Code:
// change this
protected $returnType ActivityEntity::class;

// to this
protected $returnType 'App\Entities\ActivityEntity::class';

// change this
$newActivity = new ActivityEntity();

// to this
$newActivity = new \App\Entities\ActivityEntity(); 
Also did you setup the Entity to use the correct get and set methods?
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply


Messages In This Thread
RE: CI4 Entity using datamap to Model-Save - by InsiteFX - 07-15-2021, 12:30 AM



Theme © iAndrew 2016 - Forum software by © MyBB