Tuyoshi Vinicius
Tuyoshi Vinicius

Reputation: 861

C # entity framework generate entities from a JSON

I have a web service that generates a very complex json structure with many children, I wonder if it is possible to create tables from this json structure and future update these tables with entity framework.

have a basic knowledge of how to generate table from code first

Upvotes: 1

Views: 910

Answers (1)

Felipe Vagner
Felipe Vagner

Reputation: 70

This you are searching for See the documentation on the site

http://jsonclassgenerator.codeplex.com/

There is also a web version of the software

http://json2csharp.com/

Upvotes: 1

Related Questions