Merge branch 'SqlSugar5' of github.com:sunkaixuan/SqlSugar

This commit is contained in:
skx
2020-12-30 01:09:50 +08:00

View File

@@ -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);