mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 17:37:58 +08:00
Update UtilMethods
This commit is contained in:
parent
991cd3ccd9
commit
483f75620f
@ -601,11 +601,15 @@ namespace SqlSugar
|
||||
{
|
||||
var method = destinationType.GetMyMethod("Parse", 1);
|
||||
if (method != null)
|
||||
{
|
||||
{
|
||||
var result = method.Invoke(null, new object[] { value });
|
||||
return result;
|
||||
return result;
|
||||
}
|
||||
}
|
||||
else if (value is byte[] && destinationType == typeof(char))
|
||||
{
|
||||
return (char)((byte[])value)[0];
|
||||
}
|
||||
var destinationConverter = TypeDescriptor.GetConverter(destinationType);
|
||||
if (destinationConverter != null && destinationConverter.CanConvertFrom(value.GetType()))
|
||||
return destinationConverter.ConvertFrom(null, culture, value);
|
||||
|
Loading…
Reference in New Issue
Block a user