Open ArneMancofi opened 7 months ago
When reading a property of type int? where the actual JSON provided is an integer, shouldn't AlbanianXrm.PowerPlatform.JsonConverters.IntegerConverter.Read(...) also handle the case where reader.TokenType == JsonTokenType.Number?
int?
AlbanianXrm.PowerPlatform.JsonConverters.IntegerConverter.Read(...)
reader.TokenType == JsonTokenType.Number
Hi @ArneMancofi, do you mind providing a Unit Test with a property type int? where the tool is breaking?
That would really help me validate the proposed fix.
Thanks, Betim.
When reading a property of type
int?
where the actual JSON provided is an integer, shouldn'tAlbanianXrm.PowerPlatform.JsonConverters.IntegerConverter.Read(...)
also handle the case wherereader.TokenType == JsonTokenType.Number
?