since you're using the mappedBy attribute your code should look something like:
Order order = ...;
| OrderLine ol1 = ...;
| OrderLine ol2 = ...;
|
| ol1.setParentOrder(order);
| ol2.setParentOrder(order);
|
| Collection<OrderLine> orderLines = order.getOrderLines();
| orderLines.add(ol1);
| orderLines.add(ol2);
|
| order.setOrderLines(orderLines);
|
| -----------------
| //save code
| em.persist(order); //or em.merge(order)
|
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4103426#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...