Andy has pinpointed the issue. You most likely don't have a field on your MyUser class named "email" but the error isn't being triggered on the first query because your second call to setFilter() is overwriting the reference to the nonexistent field. You'll need to pass the entire filter to setfilter() and you most likely want 'contactInfo.email' instead of 'email'
Hope this helps, Max On Tue, Nov 3, 2009 at 12:00 PM, datanucleus <[email protected]>wrote: > > Multiple calls to setFilter will overwrite the previous value. Do you > really want to do that? > > > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
