Since silverlight does not have any support for DataSets/DataTables, what would be the best approach if I wanted to consume a table of data from a database?
A bit like this: user action in silverlight -> get data from server -> display in GridView
The thing is, I do NOT know how many and which columns the data will have...
Can I bind the DataGrid to some loose form of XML, generated on the server or will I have to parse The datasets returned by the webservice myself in another format or ... ?