I'm trying to find the most efficient way to get all objects from the datastore except ones already contained in a list.
Eg. PersistencyManager.getObjectsById(List) will return a list of objects with given ID's. I want a getObjectsExcept(List) method that will return all of the objects that are not contained in the given collection.