Hi all,
When iterating a list of my pojos, I'd like to examine a property of
each pojo using <isEqual/> like
SELECT
<dynamic>
<isPropertyAvailable property="return_columns">
<iterate property="return_columns" conjunction=",">
<isEqual property="isValid" compareValue="false">
$HOW DO I ACCESS A CURRENT ELEMENT'S PROPERTY HERE?$
</isEqual>
</iterate>
</isPropertyAvailable>
</dynamic>
FROM
$table_name$
Would this be possible scenario?
If yes, could you tell me the exact syntax to use to access a property
of each element while inside <iterate/>?
Thanks,
Q