Cancel DataServiceCollection: Only a single enumeration is supported by this IEnumerable
问题 Reference to my previous question asked today in the following link I need help to write some code to cancel the changes on the client side without reloading the data. The only try I did was unsuccessfully as the following: private IEnumerable<TheEntity> _data; then: private void DoCancel() { _dataSource.Clear(true); _dataSource.Load(data); } I thought that I can clear the data and re-load a cached private field. Unfortunately, I get the error: Only a single enumeration is supported by this