Update .net core project

This commit is contained in:
sunkaixuan 2022-09-14 00:50:00 +08:00
parent 752f375707
commit 519b7f43cf

View File

@ -366,7 +366,14 @@ namespace SqlSugar
}
else if (UtilMethods.IsNumber(type.Name))
{
return value;
if (value.ObjToString().Contains(","))
{
return $"'{value}'";
}
else
{
return value;
}
}
else
{