@A problem occurred parsing attribute Temp of object of type WeatherDemo.Forecast . How do I fix this problem?

0
Hello Everyone,   while I am import mapping a Json data with REST call, I received this message: A problem occurred parsing attribute 'Temp' of object of type 'WeatherDemo.Forecast' " Would you please tell me how to solve this problem?   thank you
asked
1 answers
1

Hi Enwer,

I suspect "Temp" is short for temperature. A problem with parsing means that the attribute you get from your rest service probably can't be mapped to the attribute you have in your domain model.

My suspicion is that you are trying to map a Decimal to an Integer. Check if the "Temp" attribute is of the same type on both sides of your import mapping. If not, you need to change this.

 

 

answered