Is there such a thing as skipAttributes on the SELECT (not just insert/update)
All my models extend a BaseModel
which have some basic fields like id, createDate, editDate, active.
Some of my tables do NOT have all these fields. During insert/update, the skipAttributes() are working fine but it blow up during any type of fetch. I was thinking of doing something like beforeSelect()
something like that to hook into to maybe even do something like
unset($this->createDate);
Not really familiar with the Zephir code to look deeper
The obvious solution (not preferred) would be to create 2 abstract classes instead of one and do one more extend
Thanks, Chris