antony.trupe
antony.trupe

Reputation: 10844

Datastore entity with kind and key has a null property named

After adding a boolean attribute to an object, fetching that object from the datastore results in the error:

Datastore entity with kind <Class> and key <Class:ID> has a 
  null property named <attribute>

Upvotes: 3

Views: 806

Answers (1)

antony.trupe
antony.trupe

Reputation: 10844

Don't use primitive data-types, use their wrapper classes.
Instead of boolean, use Boolean, etc.

Upvotes: 9

Related Questions