I have a Json object like,
{"Id":1492,"name":"Antony","School":"National School"}
Now I need to separate these object. I want to get something like this,
Id = 1492
name = Antony
School = National School
So that I need to store this data separately in db table.
Please help.
Thanks much