views:

27

answers:

1

hi i have one doubt.How to set primary key in table using googledatastore.

+1  A: 
@PrimaryKey
@Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
private Key key;

Documentation can be found here.

Banang