Google App Engine datastore
- by megala
Hi
i had created table with primarykey{groupname} in google app engine datastore as follows,
//---------------coding-----------//
@Entity
@Table(name="Groups", schema="PUBLIC")
public class Creategroup {
@Id
private String groupname;
@Basic
private String groupid;
.
.
.
}
My doubt is I wnat to set groupname and groupid both as primary key is it possible.how ?
Guide me
thanks in advance