Typo in DynamicObjectMapper.ParseToNativeType
azabluda opened this issue · 1 comments
azabluda commented
There seems to be a question mark ?
missing after the second short
if (targetType == typeof(short) || targetType == typeof(short))
{
return short.Parse(value);
}
This causes System.NotImplementedException: string parser for type System.Nullable`1[System.Int16] is not implemented.
6bee commented
Yes, indeed. Changed it to short?
.