Is it possible to access the Z_PRIMARYKEY table of core data programmatically? I’m trying to find the Z_MAX value for a table/entity. Thanks!
Is it possible to access the Z_PRIMARYKEY table of core data programmatically? I’m trying
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can access a Core Data SQLite store file directly using the standard C SQLite API but is poor practice to do so and virtually always unnecessary.
The collection operators and expression allow you to find sum, max, min and other common operations within a fetch. See Core Data Programming Guide:Fetching Specific Values