Computed Properties
Dynamic, cached, properties that can return any CFML data type.
Defining Properties
<cfscript>
computed = {
"tasks": function() {
return queryExecute( "
select *
from tasks
" );
}
};
</cfscript>Accessing Properties
Caching
Last updated