Two quick points to add:

   - You can verify whether an entity has been persisted using the local
   data viewer. If your application is running on port 8080, then you can load
   the data viewer at http://localhost:8080/_ah/admin -- this should help
   you determine whether the issue is your persistence layer or query.
   - If you don't want to "touch" every field before returning your object,
   you should be able to add it to the default fetch group:

@Persistent(defaultFetchGroup = "true")
private ContactInfo contactInfo;

- Jason

On Fri, Aug 28, 2009 at 2:43 AM, B Jansen <[email protected]> wrote:

>
> Thank you!!
>
> That solved it.
> I think I overlooked (or mis understood) that one line in the
> documentation. But an example code like you showed would be nice in
> the doc
>
> Thanks again!
> >
>

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to