Hi there, do please forgive a stupid question, this is probably EOF 101, but I am not quite sure of the proper answer.
I've got a Collection of global IDs (it might be any kind of a Collection, from an NSArray to a Java Set). All the GIDs represent the same entity, if important. And the collection is not recursive (contains just GIDs, never other nested collections). I'd like to turn it into a collection of EOs, as efficiently as possible, preferably with at worst one DB round-trip (which needs to include also a pre-fetch of a :1 relationship of those objects, if a fetch is needed and the data can't be filled from snapshots). What's the best way to do that? I've tried ERXEOControlUtilities.convertGIDtoEO, but for one, it does not seem to properly support diverse collections (well I could turn the collection myself into an NSArray of course, if need be; but it would be sorta nicer not to have to do that), and besides, it does not seem to support a relationship prefetch (or perhaps I missed/did something wrong at my side, which is always quite probable). Currently I simply turn all the GIDs into faults, which works properly, but is terribly slow when all those faults (and their relationship faults) get fired one-by-one later. Thanks for any suggestion! OC
_______________________________________________ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobjects-dev@lists.apple.com) Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com This email sent to arch...@mail-archive.com