[appengine-java] Re: EntityGroup getting all children of a parent

2009-11-16 Thread Bitscorpion
sorry, was just a typo. of course it is query.setFilter("key == keyParam"); but the error is the same On Nov 16, 10:15 pm, datanucleus wrote: > >   Query query = pm.newQuery(Account.class); > > org.datanucleus.exceptions.ClassNotResolvedException: Key > >         at > > org.datanucleus.util.Im

[appengine-java] EntityGroup getting all children of a parent

2009-11-16 Thread Bitscorpion
Hello, I tried to do a little test and wrote two classes: @PersistenceCapable(identityType = IdentityType.APPLICATION) public class Tenant { @PrimaryKey @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY) private Key key; @Persistent private String name; public Te