I have an interesting problem: I can get results from my WCF service to my Silverlight code as a DataTable. The problem is that Silverlight does not support DataTable objects. I thought a lot about what I can do, and the best I can think of is to pass it as a List.
Great, right? Nope. Now I get the same problem as before; nothing returns. The code shows that it works correctly, but it just returns nothing.
Any tips on how to do this? I need to be able to capture database results and work with it in Silverlight. Currently, I can get the data as an object that is not supported by Silverlight, but this view defeats the target.
source share