NSExpression is used to represent expressions in a predicate. Comparison operations in an NSPredicate are based on two expressions, as represented by instances of the NSExpression class. Expressions are created for constant values, key paths, and so on.

learn more… | top users | synonyms

0
votes
1answer
32 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
2answers
58 views

NSFetchRequest With NSPredicate in Core Data

I have an attribute of type NSData and I want to search a string in this attribute how can I perform this search using NSPredicate? I try to use NSPredicate with block but predicate with block not ...
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 ...
0
votes
1answer
204 views

Core Data - Get objects filtering data using the exact elements of an array

I have 3 entities: object, object_tag and tag, and i have to get just the objects matching an array of tags by its id, but not just a tag, but that exactly matches all the tags in the array. If the ...
0
votes
2answers
321 views

Aggregate Operation on Core Data in Table View with count and grouping by date

I have a Core Data database with an entity "Event" and an attribute "eventDate" with "Date" type. The task is showing events grouping by date and showing the number (@"count") of events date by date. ...
0
votes
0answers
39 views

Satisfying ManagedObject from NSPredicate

I am trying to add a new NSManagedObject in an ArrayController, which could have some predicate (the predicate are bound to a NSPredicateEditor). When calling [self.ArrayController add:button], I get ...
0
votes
2answers
83 views

NSExpression 1/2

I want to calculate a string, which I'm doing by this: NSExpression *expression = [NSExpression expressionWithFormat:calculationString]; float result = [[expression expressionValueWithObject:nil ...
0
votes
1answer
158 views

Chained expressions to perform calculations in Core Data

First of all: Happy new year :-) What I am trying to do I am trying to divide two attributes in Core Data and then calculate the average of these divisions. The attributes are specified by a key ...
1
vote
2answers
249 views

NSExpression based Core Data fetch does not retrieve current values (iOS 5, GCD)

What I am trying to do I am using the code below to download data (historic foreign exchange rates) from my backend server (parse.com) to my app's Core Data store. The app checks for the latest ...
1
vote
0answers
175 views

Fetch aggregate data from NSManagedObject using another expression as argument to sum: expression

Is it possible to use expression as argument for sum: expression? I have entity (NSManagedObject class) Drink with properties costPerDrink, numberOfDrinks and drinkingDate. I would like to get sum ...
1
vote
2answers
133 views

NSPredicateEditor & NSExpression - Can the display be different than the value for the predicate?

I have a predicate editor, which the template was generate via the following: NSArray * test = [NSArray arrayWithObjects: [NSExpression expressionForKeyPath: @"Abc"], ...