mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 08:37:25 +08:00
-
This commit is contained in:
parent
483f75620f
commit
776c6c26e9
@ -606,9 +606,9 @@ namespace SqlSugar
|
||||
return result;
|
||||
}
|
||||
}
|
||||
else if (value is byte[] && destinationType == typeof(char))
|
||||
else if (value is byte[] bytes&&bytes.Length==1&& destinationType == typeof(char))
|
||||
{
|
||||
return (char)((byte[])value)[0];
|
||||
return (char)(bytes)[0];
|
||||
}
|
||||
var destinationConverter = TypeDescriptor.GetConverter(destinationType);
|
||||
if (destinationConverter != null && destinationConverter.CanConvertFrom(value.GetType()))
|
||||
|
Loading…
Reference in New Issue
Block a user