I have file available in two formats: JSON and CSV. As I understand work with JSON more easily nether than CSV. Could you please advice how work with that format. File contains this kind of information:
For the begining I want to render this information into html. In future probably do some manipulation (search, CRUD operation, do some analytics). This data can be providing as site api in JSON / CSV format, and as file in JSON / CSV format.
Ok, I would suggest you use Json.NET which is included with Umbraco to deserialize your data from Json to C# models or to it's own JObjects. You can find info on Json.NET here
Fetch data from JSON or CSV file
Hello,
I have file available in two formats: JSON and CSV. As I understand work with JSON more easily nether than CSV. Could you please advice how work with that format. File contains this kind of information:
What do you want to do with this data and where is it coming from, a property editor?
For the begining I want to render this information into html. In future probably do some manipulation (search, CRUD operation, do some analytics). This data can be providing as site api in JSON / CSV format, and as file in JSON / CSV format.
Ok, I would suggest you use Json.NET which is included with Umbraco to deserialize your data from Json to C# models or to it's own JObjects. You can find info on Json.NET here
is working on a reply...