0
votes

I want to get multiple entities from the App Engine datastore by passing a list of keys as the parameter. The low level API has a method for this: get(Iterable keys). Is there an analogous method available for the JDO interface as well?

1

1 Answers

1
votes

Try PersistenceManager.getObjectsById(Collection... keys)