Hi All,
I need one help with regards to OCM.
Suppose there is a class
Class Person
{
int age;
int name;
}
There can be 30 properties of a Person instead of 2 as given in the above
metadata of person.
Let's there is an instance of Person with Person(18,"John").
I just want to update the name of the Person. But I don't want to write back
complete Person object but I want to write only name so that my should be
faster.
Please help me in this and let me know your views.
If you didn't got the context , I will give better example.