User.cfc (entity) snippet...
component persistent="true" table="Users" extends="model.BaseORMEntity" discriminatorcolumn="disc"
{
property name="Logger" inject="logbox:logger:{this}" persitent=false scope="this";
//Persistent
property name="id" fieldtype="id" generator="native";
property name="firstname" ormtype="string" length="100" notnull="true";
property name="lastname" ormtype="string" length="100" notnull="true";
//more stuff here
}
When I dump User.cfc, I see a property called Logger but it only contains an empty string. What have I missed?