I have a class as shown below...public class Survey
{
public Survey()
{
SurveyResponses=new List<SurveyResponse>();
}
[Key]
public Guid SurveyId { get; set; }
public string SurveyName { get;...
I have A Json file Which can be used for deserialize to Entity framework. For simplify we can assume the Json like this...{
"stat": "val0",
"results": [
{
"datasets": [
"val1",
"val2"
],
"head": "val3"
},
...