我有以下代码,
public class UserAccount {
  @PrimaryKey
  @Persistent
  private Long id;  
  ....
所以,通过代码创建主键,但是当我通过查看数据存储查看器时
http://localhost:8888/_ah/admin , I see key got populated via datastore (some encoded key). Is this an expected behavior ?. The problem however is when I try to connect my child objects with the parent objects. Thanks alot.