Tagged Questions
The fetched-property tag has no wiki summary.
10
votes
1answer
535 views
Fetched Property in XCode Data Model Editor for minimum value
How do I add a Fetched Property in XCode's Data Model Editor for minimum value of one attribute??
My model:
Item (name, note, storedItem)
StoredItem (price, item)
Item 1 ---> N StoredITem ...
8
votes
5answers
12k views
How to sort Core Data fetched properties
The Core Data Documentation states that:
The fetch request associated with the [fetched] property can have a sort ordering, and thus the fetched property may be ordered.
How do I specify the ...
2
votes
1answer
578 views
How do ensure that a Core Data Fetched Property is fetched from the context rather than the cache?
I have a managed Object Model that contains 2 Entities.
One of the entities (Lets Call it EA) calculates it's properties by referencing some properties in a sub-set of the second entity (Call it EB).
...
1
vote
1answer
81 views
i18n in iOS Core Data
I'm working on a localized schema for iOS. I have different Entities that can have translated fields, so for each one I create a Translation entity. There is always a one-many relation between the two ...
1
vote
1answer
179 views
Core Data get sum of values. Fetched properties vs. propagation
I'm relatively new to Core Data (coming from an SQLite background). Just finished reading the 'Core Data for iOS' book but I'm left with a number of baffling questions when I started modelling an app ...
1
vote
2answers
191 views
does anyone have a working example of a fetched-property in core-data?
I have tried to use fetched properties a couple of times, and although it seems to be the right approach, it never works.
In my latest attempt I added the fetched-property to my entity, selected the ...
1
vote
1answer
45 views
Average as a fetched property?
I'm not sure if I've understood Fetched Properties correctly, so do tell me if I'm going the wrong way with this and should be doing something else instead.
I have a little demo app where I have ...
1
vote
2answers
671 views
How do I create an NSFetchedPropertyDescription programmatically?
I have a pre-existing NSManagedObjectModel that I created with the XCode GUI. I want to create a sorted fetched property, which XCode 3.2's GUI doesn't support. I do all of this before creating my ...
1
vote
1answer
239 views
What dies it mean that a fetched property is static and not dynamically updating itself?
Apple says in the NSFetchedPropertyDescription class reference:
Note, however, that unlike a playlist
a fetched property is static—it does
not dynamically update itself as
objects in the ...
0
votes
1answer
193 views
Using the Xcode 4.2.1 Core Data Model Editor, how does one update a predicate for a fetched property?
When editing a predicate with the Core Data Model Editor in Xcode 4.2.1, how does one persist the updated predicate? Changing the value for the predicate does not seem to persist. The original ...
0
votes
3answers
137 views
Fetched Property in core data returning improper count
I have a core data relationship that looks like this
ItemA ->> ItemB
where as itemA has many of itemB. i wanted to use a fetched property that allowed me to grab all associated of itemB that were ...
0
votes
1answer
34 views
Core Data background sorting
I have a Department entity which has a one-to-many relationship to an Employee entity. During runtime, for each Department object I want to maintain a sorted array of Employee objects (sorted ...
0
votes
1answer
1k views
xCode 4.2 core data how to create a fetched property using GUI in the data model editor?
I'm very new to the core data programming. I understand that the entities are tables, and I'd like to do the following:
One table, "Record" has an attribute "recordID" in another table ("Event") I ...
0
votes
2answers
110 views
Stored NSFetchRequest returns error “A fetch request must have an entity”
I added a fetched property to my entity at data model. I did not add its predicate. I retrieve it with fetchRequestTemplateForName, but when execute it I got this error "executeFetchRequest:error: A ...
0
votes
2answers
165 views
core data fetched properties and NSFetchedResultsController
I read this in the core data programming guide:
In many cases, your initial fetch retrieves a starting node in the object graph and thereafter you do not execute fetch requests, you simply follow ...
0
votes
1answer
169 views
Core Data: Fetched attributes with joined tables
I have a Host which has a many-to-many relationship with services. The relation is through a join table "hostServices". I would like to fetch te services related to a Host via a "fetched property". ...