Hi All,
I have assosication like this:
Code:
<calss name="com.Version">
<many-to-one name="srcID" class="version" fetch="select" not-found="ignore">
<column name="tid" scale="0" />
</many-to-one>
<filter name="createDate" condition="CreateDate > add_months( trunc(sysdate), -12*1 )"/>
</class>
when fetching "Version" Object, the association is fetching lot of data and results in StackOverflow. I tried to put the filter to limit the number of records to recent one year. I have enabled filter,
- not sure if this is correct ot filter is firing or not.
How can I solve this problem ?. Any help is really appreciated