Tagged Questions

on Mac OS X, an instance of NSFetchRequest describes search criteria used to retrieve data from a persistent store

learn more… | top users | synonyms

8
votes
2answers
4k views

How to get Core Data object from specific Object ID?

I can easily get an object's ID in Core Data using the following code: NSManagedObjectID *moID = [managedObject objectID]; However, is there a way to get an object out of the core data store by ...
6
votes
1answer
729 views

Variable Substitution with FetchRequests stored in a CoreData Model

I've always created my NSFetchRequests entirely in-code. Now I'm looking at the Xcode GUI for building a fetch request and storing it in the model. I'm following an example from the Xcode ...
5
votes
1answer
118 views

Is having a NSFetchRequest with an NSPredicate supported in MonoTouch

I have tried the following using an NSPredicate and am not getting the results I would expect: NSFetchRequest request = new NSFetchRequest (); request.Entity = ...
5
votes
2answers
389 views

CoreData get distinct values of Attribute

I'm trying to setup my NSFetchRequest to core data to retrieve the unique values for a specific attribute in an entity. i.e. an entity with the following information: name | rate | factor | ...
5
votes
3answers
1k views

Core data, how to get NSManagedObject's ObjectId when NSFetchRequest returns NSDictionaryResultType?

I have an NSFetchRequest which is returning the objects' properties in an NSDictionaryResultType. Is it possible to also get the objects' ObjectId within this dictionary? Otherwise I will need to run ...
5
votes
1answer
2k views

Core Data - NSPredicate to filter to-many relationship

I have 2 entities, Task and List. Each task has a to-one relationship to a List object called "list", and there is an inverse relationship with List, which has a to-many relationship with Task called ...
5
votes
1answer
1k views

How to make an NSFetchRequest which asks for objects that have a specific firstname?

For example, I have a Managed Object Model with an Entity called "Friends", and a friend has a firstName. I want to get all friends where the firstName is equal to "George". How can I do that?
4
votes
1answer
214 views

Is it possible to sort by subclasses in an `NSFetchRequest` without adding additional attributes?

I want to group the results of a NSFetchRequest by entity. The entities all share the same abstract parent. For example: animal | |-cat | |-dog The NSFetchRequest has includesSubentities set TRUE ...
3
votes
1answer
403 views

Core Data NSPredicate with SQLITE store

This code returns 0 objects which is not correct. However, when removing the predicate, the fetch request returns all objects. NSError *error = nil; NSEntityDescription *entityDescription = ...
3
votes
3answers
339 views

How to use binary flags in Core Data?

I have an int32 attribute in a Core Data database. I use this int as an enum bit field. Is it possible to create a NSPredicate to query items based on the binary value of this int ? Something like ...
3
votes
2answers
529 views

Core Data: Fetch via specific property (join relationship)

I have an core data model as follows The attributes property of Page is a set of DictionaryEntry, they are values for my Page objects, much like a standard NSDictionary (except all of the keys and ...
3
votes
2answers
2k views

NSFetchRequest and predicateWithBlock

I am playing with an app that uses Core Data and NSManagedObjects to populate a UITableView. There is only one class in my application, called Event. I have created the following custom instance ...
3
votes
1answer
405 views

objectAtIndex:0] numberOfObjects] > fetchLimit

I am currently having an issue where my UITableViewController/UITableView which uses an NSFetchedResultsController displays about 86 items when the fetchLimit on the fetchRequest for the FRC is 4. I ...
3
votes
1answer
447 views

Core Data: trying to find minimum date for an attribute in an entity

I'm trying to find the oldest date in a particular attribute in Core Data. I've found an example in the Core Data Programming Guide that purports to do exactly that, but keep getting an unrecognized ...
3
votes
6answers
3k views

Core Data pattern: how to efficiently update local info with changes from network?

I have some inefficiency in my app that I'd like to understand and fix. My algorithm is: fetch object collection from network for each object: if (corresponding locally stored object not found): ...
2
votes
0answers
51 views

NSExpressionDescription for empty result sets

Using Core Data, I have a fetch request to fetch the minimum of a certain attribute using an expression. If I set a predicate on the request that results in no results being matched, I get ...
2
votes
3answers
111 views

NSFetchRequest not catching objects that have a changed property

I have run into a weird problem with CoreData on MacOsX 10.6 using an SQL store. I have an NSManagedObject subclass called Family with attribute name and a relationship personList connected to another ...
2
votes
1answer
322 views

Core Data search optimization

I'm working on a search feature in one of my Core Data based apps and I'm trying to gather everyone's tips on search optimization to get it as fast as I possibly can. The search needs to be fast ...
2
votes
2answers
198 views

Anyone know how to make the table index the first 4 chars of my core data name attribute?

I'm working on a coin app. Coins are presented to the user in a tableview, managed by Core Data. All the coin names begin with either "19" or "20". When I implement a section index on the table view, ...
2
votes
1answer
526 views

Sorting an NSFetchRequest by a dependent property using a to-many relationship

Would appreciate some guidance as I'm a bit out of my depth on a Core data issue. I would like to create an NSFetchRequest with an NSSortDescriptor that uses a dependent property based on a to-many ...
2
votes
2answers
931 views

Core Data: Keypath Error Not Found in Entity <NSSQLEntity Studies id=3>

Could any one tell me what's the wrong with this code? It raises the following error and cause application to crash: reason: 'keypath Studies.patients.PatientName not found in entity <NSSQLEntity ...
2
votes
1answer
982 views

Core Data: Fetch all entities in a to-many-relationship of a particular object?

in my iPhone application I am using simple Core Data Model with two entities (Item and Property): Item name properties Property name value item Item has one attribute (name) and one ...
2
votes
1answer
344 views

Why use NSFetchedResultsController?

Core data provides the method "executeFetchRequest" in NSManagedObjectContext class, which we can use to fetch data from tables and use it whatever the way need to. Now there is another way by using ...
2
votes
1answer
102 views

iPhone Core Data get Grandchildren

If I have entities set up for Parent - Child - Grandchild and one to many relations between them I know I can then get all the Child entities for a parent or all the Grandchild Entities for a Child. ...
2
votes
1answer
689 views

UITableView not updating DataSource after change to NSFetchedResultsController

I have an UITableView populated by a NSFetchedResultsController. The initial fetch works fine. I can add, remove, modify, etc with zero problems.. But I want to add user-defined sorting to the table. ...
2
votes
3answers
1k views

iPhone OS: Fetching a random entity instance using NSPredicate Nsfetchrequest and core data

Working on an app where I have a large collections of managed objects against which I want to fetch a few random instances. My question is, is there any way I can use NSPredicate and NSFetchRequest ...
2
votes
3answers
3k views

NSFetchedResultsController fetch request - updating predicate and UITableView

In my iPhone Core Data app I have it configured in a master-detail view setup. The master view is a UITableView that lists objects of the List entity. The List entity has a to-many relationship with ...
2
votes
1answer
720 views

iPhone Fetch Request with localized sorting

I'm trying to get sorted localized data from a core data model. My code: NSEntityDescription *entityDescription = [NSEntityDescription entityForName: entityDescriptionValue ...
2
votes
3answers
753 views

NSDictionaryResultType expression not taking into account newly inserted objects

I want the maximum value of a field in core data so I have set up the following request: // Create fetch NSFetchRequest *fetch = [[NSFetchRequest alloc] init]; [fetch setEntity:[NSEntityDescription ...
1
vote
1answer
31 views

How to retrieve unique relationship of Entities in Core Data

There must be an easier way to do this. I have search and search but can't seem to find the answer I am looking for. Let's say we have a relationship like this EntityA<-->>EntityB If I create ...
1
vote
1answer
30 views

How to manage one-to-many relationship in Core Data?

I am having a hard time figuring out some things about how Core Data handles its database. I will explain my problems with a concrete example: Let's just say that we have the following schema where ...
1
vote
1answer
36 views

Core Data. Consequent fetch on same object returns null

I have this basic one-to-many relationship in Core Data: Brand has N Products Product has 1 Brand (Inverse relationship to the previous) And I am parsing products coming from a WS. When a product ...
1
vote
1answer
43 views

Core-Data complex countForFetchRequest

Suppose i have a one to many relationship between two model entities Entity One and Entity Many, and Entity One has a name field, Entity One (1) --- (m) Entity Many I want to check if an Entity ...
1
vote
1answer
38 views

How do I craft a Core Data query of objects without an item in relationship?

Say I have a Core Data entity called "Bucket". A Bucket has a name and a many-to-one relationship, named "items", to an entity named "Item", which have an attribute, "url". Business rule requires that ...
1
vote
1answer
58 views

Can I apply multiple predicates to an NSFetchRequest? Would it be better to manually parse my results?

Ok I have a basic iPad app that asks for 5 search/filter criteria from the user. Based on this data, I need to go to my core data db, and pull out any managed objects that fit that criteria. It seems ...
1
vote
2answers
37 views

NSFetchRequest Return object first time it is run but not subsequent times

I have a set of objects and for each object in this set I am calling a method that has an NSFetchRequest inside of it. This NSFetchRequest is used to fetch an object based on an id that is passed ...
1
vote
2answers
70 views

In Xcode, NSFetchRequest is only returning the Objects, but not their attributes

I have the following code to fetch a set of 'Projects' from the core data (each 'Project' has some attributes, e.g. 'title','time','endTime','pay' etc.): NSFetchRequest *request = [[NSFetchRequest ...
1
vote
1answer
59 views

Objective C - NSFetchRequest with category unique

I'm using Core Data for my iPhone app. Initially I have a UITableViewController that just lists all the "Stores". However, now we realized that list is getting too long, and would like to break it ...
1
vote
2answers
241 views

NSFetchedResultsController `performFetch:` Results No Longer Sorted

I managed a tableview with NSFetchedResultsController whose fetch request uses a simple sort on a date attribute. It sorts properly when it first loads but when I refresh or call the loadMore method ...
1
vote
1answer
33 views

How to Fetch only Some Objects Matching a Bool Attribute

Every time I fetch objects from the database I get all objects. Now, I have to fetch and show in a table view only some of the objects stored in the database. To do this, I've thought to add a new ...
1
vote
1answer
80 views

Updating a managedObject in Core Data

WHAT I HAVE SO FAR: In one splitview, I have a a tableview as its master, and a UIView as the detail. The tableview has 2 columns: "Days" and then "Sessions". I get the data from the Core Data, the ...
1
vote
1answer
267 views

NSFetchedResultsController Section Index is going to the wrong row

I've got a FRC with sections. I've implemented the section index (just like in 6 other views where it works), and it shows; however, when I tap on one of the indexes it goes to the middle and stops. ...
1
vote
1answer
103 views

NSFetchRequest/NSPredicate exception with “X IN Y”

The following code throws an NSInvalidArgumentException: productList is an NSArray and coreDataContext is, of course, an NSManagedObjectContext NSFetchRequest *fetchRequest = [[NSFetchRequest ...
1
vote
1answer
189 views

Sort by entity name in NSFetchRequest

I have a fetched results controller that should display all items of a certain entity that has a number of subentities. The sections in the fetched results controller should be based on the entity ...
1
vote
1answer
85 views

Query regarding fetchrequest for coreData

I have a Client Entity and it has a to many relationship (entries) with Entry entity. Client Entity also has a to many relationship with an Invoice Entity (invoices). Invoice Entity also has a to ...
1
vote
1answer
269 views

Providing a Random Ordering for a Core Data Fetch

I have a mac app with a scrollview that displays a list of items. The data for the items is provided from Core Data. I need to provide a 'shuffle' button that with randomize the order of the items ...
1
vote
2answers
658 views

NSPredicate Returns No Results with Fetch Request, Works with Array Filtering

My situation is simple: I have some records in my core data store. One of their attributes is a string called "localId". There's a point where I'd like to find the record with a particular localId ...
1
vote
1answer
486 views

setFetchBatchSize on a NSFetchRequest on the iPhone

I don't understand the meaning of setFetchBatchSize. In the following code, I set the fetch batch size to 20, but I still get 49 objects in my results array (which are ALL the objects from the query) ...
1
vote
3answers
506 views

Predicate works for array but not for fetchRequest

I am trying to create a fetchRequest that shows me all values that are not already in another array. This code returns the array I expect: NSArray *questionChoices = ...
1
vote
1answer
451 views

How to create an NSFetchRequest which filters Core Data objects based on parent relationships?

I have a Core Data model similar to this: Company Entity companyName attribute (string) To-Many relationship to Employee entities. Employee Entity employeeID attribute (string) To-One ...

1 2 3 4