Reputation: 1826
After creating an entity:
DatastoreService datastore = DatastoreServiceFactory.getDatastoreService();
Entity employee = new Entity("Employee");
How to set an index-able list property? like say:
employee.setProperty("tag", "manager", "corrupted", ...);
// "tag" is the property name,
// "manager", "corrupted".. are the values in the list.
Upvotes: 0
Views: 266