From: Paul S. <pau...@ne...> - 2002-12-01 02:46:52
|
Hi, that reminds me of something: is there bidirectional association support for List types? I can't seem to find it (it's there for sets and bags). Regards, PaulS. > > P.S. I'm not keen on the way you add items to bidirectional association. The > correct idiom is: > > parent.getChildren().add(child); //yes, even if the children collection is > readonly="true" > child.setParent(parent); > sess.save(child); > |