In our domain, we override the ToString method on all our domain types.
However, when returning those domain objects in response to a Silverlight service request, the functionality of ToString is lost. ToString() just returns the namespace description of the object as it is imported from the service. My guess is that the domain proxy created by the service reference doesn't include the ToString logic.
Is it possible to get this to work without having to re-implement ToString on the Silverlight client?
Update: BTW, this is so I can bind to the whole object and have the string description honored. I have a collection of domain objects coming back from a service. I would like to set the ItemsSource of a UI collection to a list of these domain objects and not have to re-create the ToString logic locally.