How to add a property to an Entity class that should not appear in the database?
I need a property for a temporary value. Therefore, the property should not be retrieved from the database or stored in it. it also should not be a sql calculated value, I need to install (and get) this only in PHP code.
source share