It’s not special to ColdBox. It would depend on i...
# box-products
e
It’s not special to ColdBox. It would depend on if your CFC has
accessors="true"
on the metadata. If so, CFML generates
get#propertyName#
and
set#propertyName#
methods you can use. If you don’t want
accessors="true"
on the component, you will need to provide your own methods that access the properties.
🙏 1