How to assign optional attribute of NSManagedObject in a NSManagedObjectModel having Three NSManaged
Posted
by Kundan
on Stack Overflow
See other posts from Stack Overflow
or by Kundan
Published on 2010-04-30T15:05:02Z
Indexed on
2010/04/30
15:07 UTC
Read the original article
Hit count: 309
I am using coredata framework. In my NSManagedObjectModel i am using three entities that are Class, Student and Score where class and student have one-to-many & inverse relationship and Student and Score have also inverse but one-one relationship.
Score entity has all optional attributes and having default '0' decimalVaue, which is not assigned at the time new Student is added. But later i want to assign them score individually and also to particular attribute not all of score attributes in a go. I am able to create and add Students to particular Class but dont have any idea how to call particular student and assign them score. For example I want to assign Score'attribute "dribbling" [there are many attributes like "tackling"] a decimal value to Student "David" of Class "Soccer" ,how i can do that?
Thanks in advance for any suggestion.
© Stack Overflow or respective owner