We have an asmx web service which contains several custom objects which we would like to return to our application via a web method call and bind to a datagrid. Getting the data and displaying it in the datagrid works well, but I'm not sure how to have the grid display updated data when the underlying data in the collection changes. The classes on the web service can't implement iNotifyPropertyChanged. I suppose we could create wrapper classes which implement iNotifyPropertyChanged for each corresponding class on the web service, but this doesn't seem to be a wise approach. What options are available to handle this type of scenario?
Brad