I have an Entity in my Core Data model that contains a reference to itself. i.e. A Page can have a child collection of pages. When compiling i get the warning:

"Page.pages -- to-many relationship does not have an inverse: this is an advanced setting (no object can be in multiple destinations for a specific relationship)"

Now I have read that core data requires an inverse relationship to maintain integrity and would like to provide this. I don't mind my data model being changed it is an early stage of development. What is an appropriate way of dealing with this situation?

alt text

link|improve this question

1  
Well, if the warning is that Pages.pages doesn't have an inverse relationship, have you tried adding an inverse relationship? (Maybe Pages.parent?) – Dave DeLong Dec 20 '10 at 7:29
(self.feels.silly) exactly what i need, write it as an answer. – Aran Mulholland Dec 20 '10 at 7:32
feedback

2 Answers

up vote 2 down vote accepted

(By request of @Aran)

Well, if the warning is that Pages.pages doesn't have an inverse relationship, have you tried adding an inverse relationship? (Maybe Pages.parent?)

link|improve this answer
feedback

Select the pages relationship and set the inverse relationship to pages also.

edit: nvm thats if a page has more than one parent.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.