I only need to get an attribute from a single row of the table:
name | id | idade | aprov|repro| sala |
_______|______|________|______|_____|______|
John | 32 | 15 | A | | 155 |
Following the table above, it would be the idade
field containing the 15
element.
How can I do this using Core Data?
In case this app is for iOS.