Re: Problem traversing relationships - need hint

2006-06-20 Thread Andrus Adamchik
The query certainly looks fishy. I suspect this may be related to this issue: http://issues.apache.org/cayenne/browse/CAY-447 Now the question is whether your relationship problem is also related to that. I guess it would help if you post your DataMap XML subset containing the 4

Re: Problem traversing relationships - need hint

2006-06-19 Thread Andrus Adamchik
On Jun 19, 2006, at 5:13 PM, Arturo Perez wrote: Iterator i = articleCategory.getArticles().iterator(); while (i.hasNext()) { ArticleCategoryLink acl = (ArticleCategoryLink)i.next(); ArticleMeta am = acl.getLatestArticle(); Article a = am.getArticle(); } The article is null