Eliminating Evaluate from my application
Ive been doing a little bit of reading and a lot of people seem to feel that evaluate is unneccessary. I am however having trouble finding anything comprehensive on how to eliminate evaluate from my application. Iam only using it in a few places but would like to know the alternatives (any useful links would be appreciated).
Here is an example of where Iam using evaluate:
<cfoutput query="housing_type">
<tr>
<td class="tblcell">#HousingTypeName#</td>
<td class="tblcell">#Evaluate(HousingIdentifier).Time_Spent#</td>
<td class="tblcell">#Evaluate(HousingIdentifier).Records#</td>
</tr>
</cfoutput>
So Iam using the value returned from a query to access another query identified by the identifier grabbed from <cfoutput query="housing_type">
or basically housing_type.HousingIdentifier.
And then from the second query Iam grabbing the .Time_Spent value.
any pointers on how I can eliminate evaluate from this.
Cheers
