You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user-java@ibatis.apache.org by Nathan Maves <Na...@Sun.COM> on 2005/10/18 22:34:20 UTC

Nested Iterate tags

Brandon this one might be for you.

I closest thing in the unit tests is a Map with a List as a  
property.  We actually have a Map with a LIst of Lists.


Is this possible?

I have a List<List<String>>

If
     innerListOne = 1,2,3
     innerListTwo = 4,5,6

I want the result to look like

(
id IN (1,2,3)
or
id IN (4,5,6)
)

Nathan