1

How can I automatically read a Entity (com.google.appengine.api.datastore.Entity) into a object using GoogleAppEngine Low Level API?

There is no magic way?

DataNucleus
  • 15,497
  • 3
  • 32
  • 37
Victor
  • 8,309
  • 14
  • 80
  • 129

1 Answers1

1

The Low Level API doesn't provide entity mapping - it just exposes a dict-like interface. If you want mapping, you need to use JDO, JPA, or a third-party library like Objectify. Personally I'd suggest Objectify as the obviously superior choice.

Nick Johnson
  • 100,655
  • 16
  • 128
  • 198