[appengine-java] two entities into the same entity group - unowned relationship

2009-12-18 Thread aswath satrasala
I have two classes with unowned relationship. I am making tenant key as a key field in the MasterUserLogin. How can I make them belong to the same entity group @PersistenceCapable(identityType = IdentityType.APPLICATION) public class Tenant { @PrimaryKey @Persistent(valueStrategy =

Re: [appengine-java] two entities into the same entity group - unowned relationship

2009-12-18 Thread Rusty Wright
My understanding is that the only way objects can be in the same entity group with GAE is they have a parent/child relationship (or grandparent/grandchild etc.). aswath satrasala wrote: I have two classes with unowned relationship. I am making tenant key as a key field in the