I've searched around and I'm confused about something.

I've got a data model with a many-to-one relationship. How do I:

1. Given the object on the "one" side, how do I get its related object on the "many" side? 2. Given the object on the "many" side, how do I get all of the objects on the "one" side?

This is trivial to do with SQL, but I don't see any direct SQL interface in CoreData. Instead, I read <http://developer.apple.com/documentation/Cocoa/Conceptual/CoreData/Articles/cdFetching.html#//apple_ref/doc/uid/TP40002484 >, and it is suggesting that I have to do something like [NSPredicate predicateWithFormat:@"toOneRelationship == %@", toOneObject], but I can't do that because I am not using NSManagedObject at all. (And I have a reason why not - these model objects have to support multiple back-ends in addition to CoreData, and ObjC does not support multiple inheritance.)

So how do I query for related objects without NSManagedObjects?

Nick Zitzmann
<http://www.chronosnet.com/>

_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]

Reply via email to