Hello WO-Coders,
I fetch objects with special bindings like the following example:
[...]
NSMutableDictionary<String, Object> bindings = new NSMutableDictionary<String,
Object>();
if(selectedJob.description()!=null)
bindings.setObjectForKey(selectedJob.description(), "description");
if(selectedJob.validSystem()!=null)
bindings.setObjectForKey(selectedJob.validSystem(), "validSystem");
if(selectedJob.component()!=null)
bindings.setObjectForKey(selectedJob.component(), "component");
if(selectedJob.subComponent()!=null)
bindings.setObjectForKey(selectedJob.subComponent(), "subComponent");
NSArray<MaintenanceJob> doubleJobs =
MaintenanceJob.fetchForDoubleCheck(session.defaultEditingContext(), bindings);
[…]
Is there a way to tell the fetch-Method the max number of objects to be
fetched? For example: 10 Objects?
Thomas
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list ([email protected])
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com
This email sent to [email protected]