Hi,
First post here and exploring ObjectDB. I have an class Person which has a HashMap<String, String> called 'pMap' as a persistable field. I am able to create Person objects and persist them as expected.
However, am I able to search the HashMap field using JPA? For example, lets assume that the pMap field of some Person objects has the key/value pair "location'/'California'. Can I create a JPA query that selects such objects? Something like the following (but clearly does not work) : SELECT p FROM Person p where p.pMap['location']='California'
Any thoughts? Thanks,
-Adam