Re: [appengine-java] many different Properties or Entity for name/value pairs

2011-11-03 Thread Matthew Jaggard
I have an entity that has a class containing a Map called data - I then convert this to an entity using the method below private Entity toEntity() { Entity entity = new Entity(KIND, this.getName()); if (data == null || data.isEmpty()) { return entity;

[appengine-java] many different Properties or Entity for name/value pairs

2011-11-03 Thread Mr. Schtief
Hi, I'm using low level API for creating and managing Entitities. I have a Kind of Entity that can have unlimited name value pairs. Should i add them as properties or should i create a new kind of entity with the two properties name value and link them to the parent entity. putting them as pro