I have 2 entities - BlogEntry and BlogComments.
BlogEntry.comments is a "to many" relationship to BlogComments
| BlogEntry |
-----------------
| subject |
| body |
| comments (rel)|
| BlogComments |
------------------
| commentText |
| blogEntry (rel)|
Now, I have a tableview that I want to be able to have the first row being the BlogEntry body (text) and the rest of the rows being the BlogComments. Is this possible with an NSFetchedResultsController? Can I section off of a relationship like that? If so, can someone point me in the right direction?