I was reading that if I make for example
$car = new Car();
$car->set('name','my car');
$car->set('color','orange');
and so on...
and if i make $car->save();
after that I will be able to make $car->getCarId();
(in case the id field was mapped as CarId, Ive been trying this, but I get null everytime, and the info is persisted on the DB, I dont know how to retrieve that information, any idea how to do this?