Can any one tell me how to use AddCommand
rather than `SetCommand" to do the following.
I have a class like this:
class Profile {
List achievements;
List grades;
List extracurrics;
}
Now, suppose I need to add a grade object to this Profile object,how can I achieve this by using AddCommand
only
It should look something like this:
where YourProfilePackage should be in the code generated automatically from your EMF model.