Key newwordKey = KeyFactory.createKey(NEWWORD_KEY_KIND, NEWWORD_KEY);
Entity newWord = new Entity(NEWWORD_ENTITY_KIND, newwordKey);
newWord.setProperty(USER_COL_USERNAME, userName);
newWord.setProperty(NEWWORD_COL, word);
datastore.put(newWord);
我的意思是我想通过其属性“用户名”删除所有“新词”实体,例如,删除用户“亚历克西斯”上传的所有单词有什么想法吗?谢谢