I am calling a webservice and the returned data for a bool field is either 0 or 1 however with my model I am using a System.Bool
With Json.Net is it possible to cast the 0/1 into a bool for my model?
Currently I am getting an error
Newtonsoft.Json.JsonSerializationException: Error converting value "0" to type 'System.Boolean'
Any help would be awesome!!