Hi there, How would you query/filter on ContactInfo when you have the Employee. Or better sample if it was "Box" and a "Items", where you only want the yellow items.
From: http://code.google.com/appengine/docs/java/datastore/relationships.html#Unowned%5FRelationships ### Employee.java import java.util.List; // ... @Persistent(mappedBy = "employee") private List<ContactInfo> contactInfoSets; ### ContactInfo.java import Employee; // ... @Persistent private Employee employee; Thanks! -- 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.
