on Mac OS X, an instance of NSFetchRequest describes search criteria used to retrieve data from a persistent store
1
vote
0answers
24 views
Core Data GROUP BY
Trying to do a simple GROUP BY in Core Data, but no succes still. Starting point was here (Matt Connolly's Blog post of about a year ago and looked all over SO as well.
I simply want to group by a ...
3
votes
0answers
30 views
CoreData ordered relationships - batch unfaulting using NSFetchRequest
Background - Batch unfaulting:
NSFetchRequest allows batch unfault - for example, use a query of 1000 results, it would bring all as faults, then it would unfault X objects at a time (i.e. index 0-20, ...
0
votes
0answers
24 views
fetch coredata into tableview
I have saved my coredata and now I am trying to fetch it in a tableview class. when I click a button, a label gets saved into core data. WHen I try to fetch it, nothing shows on my cells. I know I ...
0
votes
0answers
20 views
Fetch update in Cocoa
this is the code in my AppDelegate.m:
-(IBAction)fetch:(id)sender{
NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
NSEntityDescription *entity = [NSEntityDescription ...
0
votes
0answers
4 views
NSFetchedResultsController The fetched object at index x has an out of order section name
I am having a problem in initializing FRC to be able to use sections.
CoreData: error: (NSFetchedResultsController) The fetched object at index 3 has an out of order section name 'four. Objects must ...
0
votes
1answer
34 views
Core Data NSFetchRequest with grouping
I have a fetch request that shoul result in a tableview with two sections from the result.
My model:
@interface Player : NSManagedObject
@property (nonatomic, retain) NSString * name;
@property ...
0
votes
1answer
24 views
NSFetchRequest Distinct with Change Track
I am using NSFetchRequest to return data from Core Data, My issue is that I have multiple objects being returned with the same Unique key which I would like to group together to display one cell per ...
0
votes
0answers
23 views
Get value from core data property and sum it
i´m using the code below to get the values in one of my core data property´s, but i don´t know if it is possible to extract and them sum them, and i was wondering if someone could help me with this:
...
0
votes
2answers
56 views
CoreData fetch request - fetching all objects which have relationship
I have 3 entities:
Topic<->> subTopic<->> Certificate.
What I want is a list of all topics, where a certificate exists (with no duplicates). Based on my initial reading (mainly this question: ...
0
votes
1answer
33 views
complex NSFetchRequest with groupBy
I feel really stuck with this task, maybe somebody can suggest me a way to achieve this:
CoreData model
EKEvent <<---> EKCategory
EKEvent has properties: NSDate *created; and NSNumber ...
1
vote
1answer
80 views
Do I always fetch into a NSArray from CoreData?
I am fetching something from CoreData where I expect 1 result or nil.
Currently I set the fetch into a NSArray and I attempted as it stand to fetch into a IconRoutine* object but the [context ...
0
votes
0answers
28 views
NSFetchRequest group and count by dateField
i have date attribute in core data entity. i have count and groupy by date (yyyy-mm-dd).
NSFetchRequest can have an array of attributes for grouping. [fetchRequest ...
0
votes
1answer
36 views
how to sqlite query to core data
how can i translate the following sqlite query to core data
select name, firstname, class, telephone, entryDateTime, counselor, count()
from myTable
group by strftime('yy-mm-dd', ...
0
votes
0answers
61 views
group by date (yyyy/MM/dd) with NSFetchRequest
i have to count and group on more that 3 properties.
i'm pulling my hair while grouping and counting on field with date (yyyy/mm/dd HH:mm:ss)
i want to group by year - month - day and ignore the time. ...
1
vote
1answer
56 views
how to use subquery or how to fetch data
I use core-data and hava 2 embadded relationship to-many. Also i have a calendare, and I should dowload all medicines from all diseases at selected DATE. How I can do it with subquery or using ...
0
votes
1answer
31 views
NSFetchRequest for groupby and count combination
I'm new in Core Data, so i want to write simple fetch request to group result by some field and also a count of another field in that group.
so for example i have products table i want to retrieve all ...
0
votes
1answer
32 views
Using Case in select statement with NSFetchRequest
Is there any way of using CASE statement in SQL SELECT using NSFetchRequest?
@[
[NSString stringWithFormat:@"CASE %@ WHEN %@ THEN 1 WHEN %@ THEN 2 WHEN %@ THEN 3 WHEN %@ THEN 4 ELSE 0 ...
0
votes
2answers
49 views
NSFetchRequest for 2-way to-many Relationship
I recently started using CoreData and ran into a complicated (at least to me) fetch that I could not figure out. I searched around but had a hard time coming up with good terminology to search with, ...
0
votes
0answers
39 views
how to group by day with core data?
I have a Entity called deal and deal has a property called date which is the time this deal object inserted into the store.
and one day may have several deals.
So I want count some data group by ...
1
vote
2answers
37 views
Find object index by a property value
On iOS6 coredata, I am trying to build an app similar to slideshow (going through db entities one by one following a specific sequence). That is very easy and I could potentially even use ...
1
vote
1answer
34 views
Modifying NSFetchRequest generating NSRangeException index 0 beyond bounds for empty array
In my latest iOS App Update, I'm seeing a significant increase in DB related crashes. I'm seeing crashes from almost every line of code that runs a fetch on the DB.
Exception:
NSRangeException
* ...
0
votes
1answer
31 views
stackmob 1 to-many relationship architecture
I'm searching for some architectural guidance for a 1 to-many relationship for an ios app with a backend that runs on stackmob (baas).
In my project I want to implement a facebook like stream of ...
1
vote
0answers
42 views
Sort Descriptor for string match?
I'm using a NSFetchRequest for searching for users. In addition to sorting the results by name alphabetically on first name or last name partial matches (which I am already doing), I would like to ...
0
votes
2answers
54 views
NSPredicate that filters out subclass results
I have two classes, Company and MyCompany. MyCompany is a subclass of Company, and Company is a subclass of NSManagedObject. I am trying to write a predicate for an NSFetchRequest that will return ...
1
vote
2answers
62 views
Core Data Fetch with filter on entity and entities relationship, to many
I need help with a fetch request that filters children where children and parent have a many to many relationship. all the examples I've found are for one to many relationships.
Playlists can ...
1
vote
1answer
49 views
Core Data: Fetch objects from multiple ManagedObjectContexts
My iPad App is using throw-away child ManagedObjectContexts for editable ViewControllers, so I can easily discard the edited data.
Now I want to show a list of all objects in an overlay view, ...
0
votes
2answers
46 views
How to make index list table view with Core Data, iOS Dev
I have an Entity in core data called "Expense" with attributes "Date, Category, Amount..........". How can I list all the expenses with index list, based on "Year-Month" from Date attribute?
From ...
0
votes
1answer
55 views
Core Data: Fetching Relationship Attributes
Can't seem to figure out the trick to fetch an attribute from a relationship when limiting the fetch to a number of properties. In the code below "thumbnail" is a transformable UIImage attribute of ...
0
votes
1answer
49 views
Max value from core data attribute of different entities
I have three entities in my core data modal, A, B, C. Each has a createdAt date.
What is the quickest way to access the most recent createdAt date, regardless of the entity type? Can I do something ...
0
votes
2answers
85 views
How to group fetched result from Core Data, iOS dev
I have a core data with an Entity called "Expense", its like:
Entity: "Expense"
Attributes: "Date", "Category", "Amount"..........
My question is that is it possible to fetch how many expenses by ...
0
votes
2answers
34 views
NSFetchRequest.fetchOffset broke after setting NSManagedObject's property
I wrote a method to randomly fetch record from database, but I often got the same record no matter what NSFetchRequest.fetchOffset is.
So I did an experiment, here is my code:
- (Card *)getNextCard ...
0
votes
1answer
38 views
NSFetchRequest with NSPredicate not returning any results
The following NSFetchRequest does not return any results into the array. I suspect something is wrong with the syntax of NSPredicate. Any ideas?
...
0
votes
1answer
41 views
Evaluate CoreData entity type in predicate
I have a block predicate that I carefully crafted only to discover you can't use them in Core Data.
NSPredicate *rootContactPredicate = [NSPredicate predicateWithBlock:^BOOL(id evaluatedObject, ...
0
votes
0answers
35 views
Bug in the last version of xcode[Version 4.6 (4H127)] with core data?
I'm playing around with core data and I tried to add fetch request in the data model. If I want to add an expression it's not saved (go to an entity and return to it, it disappears), but if I add a ...
0
votes
3answers
80 views
Core Data crash: Keypath Project not found in entity
- (void)fetchResult
{
NSFetchRequest *request = [[NSFetchRequest alloc] init];
NSSortDescriptor *sortDescriptor = [NSSortDescriptor sortDescriptorWithKey:@"Project" ascending:YES];
...
0
votes
1answer
65 views
Is there a way to have NSFetchedResultsController detect changes in more than one entity?
I have an app with a simple CoreData model that is 3 entities:
B <---> A <<----> C
A is the main object and it has relationships to (aggregates) 2 other entities (B and C).
The UI shows ...
0
votes
2answers
161 views
NSFetchedResultsController multiple entities for UITableView
I have two entities one called Post and one called User. Post<<---->User is the relationship in core data. I am using a NSFetchedResultsController to fetch all Post records in my core data ...
0
votes
0answers
86 views
Core data - iPad - Fetch request on Table with > 300.000 Rows
I have the following Coredata model:
Warengruppe contains the name of a specific product and WarengruppeVK is a disposal of a Warengruppe, it contains the selling price of a product and some other ...
0
votes
1answer
28 views
single context but "Illegal attempt to establish a relationship 'xyz' between objects in different contexts
i've got one Context and i want to create a relationship between an existing Object in the Context (Veranstaltung) and a new one (Ticket).
NSManagedObjectContext *managedObjectContext = [self ...
0
votes
2answers
53 views
How to fetch the last entry of each entity in core data iOS
I am making a chat application in iOS. I saved the last conversation of every friend. My core data entity has 3 fields - jID, message and timestamp. I don't set indexing on any field.I just want to ...
0
votes
1answer
35 views
what's difference of two ways of creating NSFetchRequest
way1:
NSFetchRequest *request = [[NSFetchRequest alloc] init];
NSEntityDescription *entity = [NSEntityDescription entityForName:@"Event" inManagedObjectContext:managedObjectContext];
way2:
...
3
votes
1answer
119 views
NSPredicate traversing relationship (StackMob)
I have been scouring Apple's Predicate Programming Guide and SO as well, trying to determine the correct way to write a predicate for a certain fetch request.
It seems like the way I am attempting to ...
1
vote
0answers
108 views
NSSortDescriptor with fetched property core data
I have an Agency entity that has a fetched property city. I'm performing a fetch request and I want my results to be sorted by agency's name and by city's name.
This is the part of old code. As you ...
0
votes
1answer
16 views
Sorting and Displaying data in sectioned table view using NSFetchedResultsController
I am having database in the following manner.
ProductionHouse <----> Movies <----> MovieType
Each ProductionHouse has multiple movies associated with it. I am using NSFetchedResultsController ...
0
votes
1answer
60 views
iOS Core data - Nothing fetched right after an object is edited
I have the following problem when fetching data right after updating an object with CoreData.
Here are some details of the issue I encounter :
I have a "PersonDetailsViewController" in which there ...
0
votes
0answers
65 views
Test for existence of several ojects that had changed
I am currently trying to test the existence of several objects, i can do it using IN operator:
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"self IN %@.uid", arrayOfBoxStatus];
and it ...
1
vote
1answer
54 views
Enumerating over child entities using relationship on parent NSManagedObject VS using NSFetchRequest
Lets say I have an instance of some NSManagedObject subclass which has 1-to-many relationship property. Performance wise, how does something like
for (id item in parent.children) {
// do something ...
0
votes
1answer
80 views
Using NSExpression to combine entities and return an NSArray or NSArray elements
I would like the NSFetchRequest for my UITableViewController to group similar records (entities) based upon a particular attribute. I currently do a two-step process, but I believe there might be ...
-1
votes
1answer
74 views
Core Data: Relationships and User Objects
I'm using StackMob with CoreData (remote Database), but I think this is a general Core Data question.
I have 3 entities:
User (login)
Cars
Bikes
Each entity has several attributes.
A User can ...
0
votes
1answer
195 views
NSPredicate : Compare Date without time (Objective C)
I have column in table with DATE datatype. I want to set predicate in which I want to compare only date without time.
Because of time in date I am not getting proper result.
My current code -
...


