I'm looking for some guidence on managing a parent child relationship
when the parent can have many children -

so a simple 1-many relationship is set up

@PersistenceCapable(identityType = IdentityType.APPLICATION,
detachable = "false")
public class parent {

        @PrimaryKey
    @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
      @Extension(vendorName="datanucleus", key="gae.encoded-pk",
value="true")
        private String key;

         @Persistent(mappedBy = "catagory")
        private  ArrayList<DataPoint> points;
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to