Hi i am having Category entity and Subcategory Entity i need to when i delete Category Object at the same time subcategory object also delete here (Category----> Two-many relation ship and set to cascade) and subcategory(set nullify)so in category entity i am having two methods
- (void)addDeletionObject:(SubCategoryEntity *)value;
- (void)removeDeletionObject:(SubCategoryEntity *)value;
- (void)addDeletion:(NSSet *)values;
- (void)removeDeletion:(NSSet *)values;
can any one please guide me how can i delete the subcategory that related categoryId when will i use the methods.
Thanks in advance.
