-1

I have a webservice returning data in Json format, Now i want to populate my Dataset.xsd using the json file, how can i achieve that?

Any sort of help will be really appreciated.

Atif Waqar
  • 89
  • 2
  • 12

1 Answers1

0

You need to deserialize it from JS to C#. Look in to this already posted answer: Deserialize JSON with C#

Community
  • 1
  • 1
Joshua Smith
  • 134
  • 10
  • Joshua, your method is perfect if i have to simply Deserialize JSON to a class structure, but my issue is that i want to create RDLC reports using JSON data. And RDLC reports use Dataset.xsd. – Atif Waqar Oct 02 '15 at 18:47