Does anyone know of a clean way to cfoutput a query stored within an
instance of a CFC? For example, this would be perfect if it didn't
cause an error:

<cfoutput query="#CFCInstance.getQuery()#"></cfoutput>

But since it causes an error I resort to this:

<cfset theQuery=CFCInstance.getQuery()>
<cfoutput query="theQuery"></cfoutput>

Anyone know of a nicer way?