I have a model that has an array of Strings called tags,
public class Model {
private String tags[];
...
}
How do I make a query that looks at if the array tags contains a certain string say if a certain model's tag attribute looks like this tags[] = {"Java","Programming"}
I want to make a query in JDO that's gets all Models whose tag attribute has the element "Java".