Deserializing only select properties of an Entity using JDOQL query string?
- by user246114
Hi,
I have a rather large class stored in the datastore, for example a User class with lots of fields (I'm using java, omitting all decorations below example for clarity):
@PersistenceCapable
class User {
private String username;
private String city;
private String state;
private String country;
private String favColor;
}
…