Lets say i have 2 instances of my entities, A and B. I want to map each value from entity A over to entity B. At the moment im doing something similar to
A.firstprop = B.firstprop;
A.secondprop = B.secondprop;
etc.. Im not sure how to solve this in a loop, so i would like some assistance on that part. Thanks!