static void editItem(Entity item,Entity user)
{
item.setProperty("Owner",user);
}
Is doing the above thing of setting one entities property as another entity not a bad thing or I should just store the key like this –
item.setProperty("Owner",user.getKey());
According to Google AppEngine docs:
You can find more here in Embedded Entities.