My table in my appengine app has a field called "fields". this fields is a String[] in my Employee persistence object
@Persistent
@Serialized
private String[] fields;
The user search for multiple fields (i.e field1,field2 etc') and i want to search for objects has in their fields at least one of the user input fields. How i do that with JDO?