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 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…