I have a parent entity: Class TypeCustomer implements Serializable ( ... keys and bla bla ... name and bla bla
@Persistent (mappedBy = "customer") @Element (dependent = "true") private List <Customer> <Cliente> customers = new ArrayList (); ... bla bla ) Child entity: Class Customer implements Serializable ( ... keys and bla bla ... name and bla bla @Persistent private TypeCustomer typeCliente; ... bla bla ) Well, how to use the PersistenceManager to update the clientType in the Customer entity? The list<Cliente> of the entity TypeCliente is automatically updated? Tk's ---------------------------------------- Wagner Melo Salvador, BA, Brasil -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine-java?hl=en.
