Hello Martin,

 
First of all it should be
 
 argsStorage.addObject(selectedConnector);
I changed that:)
 
not an array. Secondly, are all those objects:  selectedFormFactor, selectedFormType, selectedConnector in same editing context as the query editing context is?
I "think" yes, specially as when I'm only using the first two qualifier arguments it works.
 
Third: did you checked SQL statement for this qualifier?
I fact I was just trying to do that after your answer, but I'm filtering an array in memory, so I'm not sure the SQL apply to that...

so I feel pretty much stupid to not have written the entire code, here it is:
argsStorage = new NSMutableArray();
argsStorage.addObject(selectedFormFactor); // this is a toOne
argsStorage.addObject(selectedFormType); // this is a toOne
argsStorage.addObject(selectedConnector); // this is the toMany that doesn't return any results, I'm just selecting one connector in the UI with a WOPopup
qualStorage = EOQualifier.qualifierWithQualifierFormat("(productFormFactor = %@) and (productFormType = %@) and (productExternalConnectors = %@)", argsStorage);
productList = new NSMutableArray(EOQualifier.filteredArrayWithQualifier(productStorageList, qualStorage));


 
--
Martin Fleder


Yahoo! Autos. Looking for a sweet ride? Get pricing, reviews, & more on new and used cars.
 _______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list      ([email protected])
Help/Unsubscribe/Update your Subscription:

This email sent to [EMAIL PROTECTED]

 _______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list      ([email protected])
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to [email protected]

Reply via email to