I have an interesting problem: I can get results back from my WCF service to my Silverlight code as a DataTable. Problem is, Silverlight doesn't support DataTable objects. I've been poking around with what I can do, and the best I can come up with is passing it back as a List.
Great, right? Nope. Now I'm getting the same problem as before; nothing get returned. Code shows it as working properly, but it just doesn't return anything at all.
Any advice as to how to go about this? I need to be able to grab the database results, and work with it in Silverlight. Currently, I can get the data in an object type not supported by Silverlight, but that sort of defeats the purpose.