私は次のコードを持っています、
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.