Synchronization code

This commit is contained in:
sunkaixuan 2024-01-09 13:33:31 +08:00
parent 9bf7ba3af1
commit 7c7774f189

View File

@ -1030,7 +1030,7 @@ namespace SqlSugar
var newValue = "null";
if (value != null)
{
if (UtilMethods.IsNumber(columnInfo.UnderType.Name))
if (columnInfo.DbTableName!= "String" && UtilMethods.IsNumber(columnInfo.UnderType.Name))
{
newValue = value.ToString();
}