Tagged Questions
6
votes
1answer
291 views
Struggling with RestKit mapping object and references
Here my entities
- HomeArticle
identifier
article (relationship)
- Article
identifier
title
subtitle
text
home (relationship)
I have a payload that looks like this:
[
{
"id": "1",
...
0
votes
1answer
107 views
Core Data: How to model multiple one-to-many between two entities
I have two entities - Item and Tag. An Item can have one or more read-only (factory) tags that the user can't edit, and then one or more read-write (user) tags that the user can create at any time. ...
0
votes
2answers
156 views
Modeling an inverse relationship in Core Data
Relationships in Core Data just confuse me. I've read and read, but I just don't get it. I guess it doesn't help that I'm usually frustrated when reading. I want to do something really simple:
I have ...
-1
votes
1answer
67 views
Inverse relationship on Child's child
I'm trying to use core data relationships to make an an inverse relationship work between a child's child object.
Here is an example of what I'm trying to achieve:
I have a number of filing ...
0
votes
1answer
79 views
Core data relationship delete custom rule
I'm facing that problem I've got 2 managed object subclasses connected by a "one-to-many" relationship. When I delete the parent I'd like to do some operations for each one of the children objects ...
0
votes
1answer
780 views
Insert one object to a many relationship - IOS Core Data
I have seen various answers around helping explain adding records in one-to-many relationships but I can't seem to make head or tail of it for my code.
I have got a relationship - Country has many ...
1
vote
1answer
116 views
Setting new values for each many-to-many entity relationship in core data
This is driving me crazy and most likely I am doing this wrong.
So I have two entities: Criteria and Option that has a many to many relationship.
The attributes for each are
Option:
optionName
...
0
votes
2answers
524 views
predicate to many-to-many relationship core-data
I have two entities in a Core Data Model like these: A <<--->> B.
Entity B has an attribute name which is a string object and a relationship AObjects to A; instead, entity A has got a ...
0
votes
1answer
132 views
Add ability to set nil for a relationship core-data
I have two entity with a many-to-one relationship. For example Employee <<---> Shop. When I create a new employee, I can choose a shop for it. I fetch all the available shops and then I ...
3
votes
2answers
918 views
Do I Have to Manually Set a Core Data Object's Inverse Relationship in Code on the iPhone
I am new to core data so please excuse me if I get some of the terms wrong.
I have several objects in my xcdatamodel file. They are all inter connected with relationships and inverse relationships. ...
0
votes
1answer
475 views
How do I get attributes from relationship-related entity in Core Data?
I'm experienced with ObjC, but relatively new to Core Data. Until now, it's been pretty straightforward, but I'm a little stuck with relationships, so I'm hoping someone can point me in the right ...
0
votes
2answers
169 views
Custom Managed Object Intermittently Hangs in Relationship Accessor
On iOS (using Xcode 4, iPad Simulator 4.3) I have an "Article" entity and an "Author" entity. There are two relationships connecting these two (an article has an "authors" relationship [optional, ...
2
votes
1answer
1k views
Core data migration involving a new entity and a to-many relationship
I am attempting to add a new entity (say B, with two "double" attributes) to my core data model and create an optional to-many relationship with an existing entity (say A). I created the new model ...
0
votes
1answer
1k views
iOS / iPhone CoreData Relationships
I have been trying to find a good CoreData tutorial that focuses on more advanced databases that have one-to-many and many-to-many relationships. From what I've read, CoreData hides the middle table ...
1
vote
2answers
488 views
CoreData - Adding a new relationship to existing entity
I have the following basic problem:
I have two entities, person and department.
Before adding a new person I want to check, that the department does not already exists and if so, then link the new ...
0
votes
1answer
462 views
iPhone Core Data Recursive relationship
I try to create a recursive relationship in core data.
I have a Model "MenuItem" that can contains some other "MenuItem", it reference itself in a too-many-relationship. To do that a created a ...
2
votes
2answers
878 views
CoreData Relationships Lazy Load?
When I have a CoreData entity named, say, 'Book', which has a one-to-one relationship with another entity ('Bookmark') would I need to insert both an instance of 'Book' and an instance of 'Bookmark' ...
2
votes
3answers
480 views
Core data relationship count update
I have a core data model with blog groups, blogs, and posts. A blog group has a to-many relationship to blogs, and each blog has a to-many relationship to posts. A post has an attribute ...
0
votes
1answer
314 views
iPhone Core Data - How to show selected records based on parent relationship?
Using Core Data. Let's say we have models for Team and Player.
Assume:
-Each player is a member of a single team
-Relevant relationships have been made in a xcdatamodel file.
I have a ...
4
votes
1answer
3k views
NSPredicate filter the data via relationship rather than a property
Here is my question. I have this model one [Event] has multiple [Day] and there is a relationship called days in [Event] and there is a reverse relationship event in [Day].
Now I want pass the Event ...
0
votes
2answers
889 views
Core Data - Setting a Relationship
I have a problem with Core Data which has left me at the end of my tether. So I was wondering if any of you wonderful people could help.
Basically, I have two entities in a Core Data project. These ...
1
vote
2answers
741 views
Sectioning on Core Data relationship for a UITableView
I have 2 entities - BlogEntry and BlogComments.
BlogEntry.comments is a "to many" relationship to BlogComments
| BlogEntry |
-----------------
| subject |
| body |
| comments ...
2
votes
2answers
371 views
Core Data Beginner [closed]
does someone know where i can find example to do that case ?
2 entities : Catalogue of books and Books.
One relation to-Many between. I found many tuto to explain how to make appears A book of ...
0
votes
2answers
1k views
Core data relationship memory leak
I have a strange (to me) memory leak when accessing an entity in a relationship.
Series and Tiles have an inverse relationship to each other.
// set up the fetch request
NSFetchRequest *fetchRequest ...
1
vote
2answers
772 views
Core Data (iPhone)- Limiting the fetch results across a relationship
I have recently been looking at Core Data for the iPhone and I have one query which I have not been able to find an answer to in the literature.
Lets imagine that I have a User model object with a ...