> I'm using version 1.3.3.1 of the SDK. I've seen the problem mentioned > on various blogs and even the App Engine group I believe but the > answer is always JDO related (dealing with fetch groups). Am I doing > something wrong or has anyone else had this problem and solved it for > JPA?
JPA has a fetch group too ... just there is only a defaultFetchGroup (i.e you can't define custom fetch groups). So just set the field to be loaded EAGER (or access the field before commit of any txn). -- 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.
