have your objects been detached already? detached objects cannot access any "child" objects that havent been fetched by default, consider them laziliy fetched (default fetchgroups usually contains primitives + String parameters only). in order to retrieve other child objects you must fetch them before detaching the object form datatstore, so your choices are either: * Modify the fecthgroup * access the child object before detaching (any call should trigger a fetch from DB).
hope this helps, Juan On Oct 5, 2:09 pm, Prashant <[email protected]> wrote: > the inheritance problem??? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google App Engine" 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?hl=en -~----------~----~----~----~------~----~------~--~---
