mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-11-09 02:44:58 +08:00
Merge branch 'SqlSugar5' of github.com:sunkaixuan/SqlSugar
This commit is contained in:
@@ -71,6 +71,12 @@ namespace SqlSugar
|
||||
{
|
||||
inValues.Add(Convert.ToInt64(item));
|
||||
}
|
||||
else if (item != null && item.GetType()==UtilConstants.ByteArrayType)
|
||||
{
|
||||
var inStr= BitConverter.ToString((byte[])item).Replace("-", "");
|
||||
inValues.Add(inStr);
|
||||
isByteArray = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
inValues.Add(item);
|
||||
|
||||
Reference in New Issue
Block a user