When I run the following code:
query = datastore.Food_Item.all()
results = query.fetch(1)
foodA = results[0]
foodB = db.get(foodA.key())
I would expect foodA and foodB to be the same type. However, I see that the foodA is of type "model.datastore.Food_Item" and foodB is of type "datastore.Food_Item". Why are they different?
FYI, the Food_Item model is defined in datastore.py, which is found in the "model" directory. I'm new to app engine, so any feedback you could provide would be greatly appreciated. Thanks!