The JSON value could not be converted to Model
1 min readDec 24, 2019
I was getting the error while doing a POC in angular and asp.net core .
Just you need to update your application reference by install blow package :
Microsoft.AspNetCore.Mvc.Newtonsoft.Json
Then in the start up file add following code
services.AddControllers()
.AddNewtonsoftJson();