From 483f75620f1db3db4ee205b72ecb64faf0871337 Mon Sep 17 00:00:00 2001 From: sunkaixuan <610262374@qq.com> Date: Wed, 19 Mar 2025 15:27:16 +0800 Subject: [PATCH] Update UtilMethods --- Src/Asp.NetCore2/SqlSugar/Utilities/UtilMethods.cs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Src/Asp.NetCore2/SqlSugar/Utilities/UtilMethods.cs b/Src/Asp.NetCore2/SqlSugar/Utilities/UtilMethods.cs index 959edc256..855ea3460 100644 --- a/Src/Asp.NetCore2/SqlSugar/Utilities/UtilMethods.cs +++ b/Src/Asp.NetCore2/SqlSugar/Utilities/UtilMethods.cs @@ -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);