You have a bidirectional relationship, in this case you must make sure both sides of the relationship are associated. Changing the code in fillData to do:
folder.specification = spec
spec.folder = folder <--- added this line
Graeme Rocher - 14/Mar/08 07:09 AM You have a bidirectional relationship, in this case you must make sure both sides of the relationship are associated. Changing the code in fillData to do:
folder.specification = spec
spec.folder = folder <--- added this line
folder.specification = spec spec.folder = folder <--- added this lineFixes the problem