Hello everybody,
I have a database that has very complex objects called Models. From time to time I need to present the user only with the names of those models. Since I don't want to instantiate every model only for that, I used dynamic proxies for all the classes that comprise a particular Model object.
However, sometimes, I need to intantiate a whole model, serialize it and send it through the web service. In this case, if I just get a model from the database and send it over the wire, I end up sending a bunch of proxy objects instead of a real model.
What's the right solution for this problem?
Kirill
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
