Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have two entities (Order and Cart) in core data with a parent child relationship. The generated parent class has a property to access the child records.

@interface Order : NSManagedObject

@property(nonatomic, retain) NSOrderedSet *carts;

@end

Say, Cart has a field 'x', is it possible to tell core data framework to keep the carts collection above always ordered by x?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
779 views
Welcome To Ask or Share your Answers For Others

1 Answer

Not with an NSOrderedSet. If you have a logical sort for your children then you should not bother with a NSOrderedSet at all and just leave them as unordered. After that change you can use a NSSortDescriptor to sort the children into an NSArray.

That will yield better performance for you compared to a NSOrderedSet and will let you sort by x.

Ordered relationships are very expensive and should be avoided unless there is an absolute necessity.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...