As described in Define ORM mapping, the persistent fields for an object are defined in the CFC using cfproperty. ColdFusion generates the accessor methods (getter and setter) for each property in the CFC that can be invoked. For more information, see Implicit Get and Set Functions in Functions. For example, if a property is defined in Artist as follows:
<cfproperty name="firstName" >
There are two methods generated in the Artist object:
Sign in to your account