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

This commit is contained in:
skx 2021-02-05 12:58:59 +08:00
commit 42ee13947c

View File

@ -15,10 +15,34 @@ namespace SqlSugar
}
else
{
return string.Join(",", array.Where(c => c != null).Select(it => (it + "").ToSqlValue()));
return string.Join(",", array.Where(c => c != null).Select(it => it.ToSqlValue()));
}
}
/// <summary>
/// 数值类型
/// </summary>
static Type[] NumericalTypes = new Type[]
{
typeof(int),
typeof(uint),
typeof(byte),
typeof(sbyte),
typeof(long),
typeof(ulong),
typeof(short),
typeof(ushort),
};
public static string ToSqlValue(this object value)
{
if (NumericalTypes.Contains(value.GetType()))
return value.ToString();
var str = value + "";
return str.ToSqlValue();
}
public static string ToSqlValue(this string value)
{
return string.Format("'{0}'", value.ToSqlFilter());