Let's say I have a model entity with 3 attributes.
I then generate the NSManagedobject subclass for this entity and add custom methods along with properties to this class.
At a later day I added a couple of new attribute to this entity.
Objective
I want the backed NSManagedobject subclass to reflect these new attribute.
Problem
The only solution I see is going to {Editor->Create NSManagedobject Subclass} in Xcode, but this way overrides the class.
Question
Is there a way to update an Entity and the backed NSManagedobject subclass without overriding the class.