For those of you that use remoting when you pass an entity to the server and the server does some processing on it, how do you get the entity back?
Do you return the entity from the function call? or do you use the ref keyword.
It seems to be the ref keyword would be better as it otherwise you would have to try and merge the results back into the original entity on the client. From my understanding, by using the ref keyword, any changes i make to that entity will automatically be reflected on the client?? Or am i off on this one