old_flsystem/类库/SqlSugar/5.0.0.9/Utilities/DbExtensions.cs

42 lines
1.0 KiB
C#
Raw Permalink Normal View History

2022-09-20 03:10:29 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
namespace SqlSugar
{
public static class DbExtensions
{
public static string ToJoinSqlInVals<T>(this T[] array)
{
if (array == null || array.Length == 0)
{
return ToSqlValue(string.Empty);
}
else
{
return string.Join(",", array.Where(c => c != null).Select(it => (it + "").ToSqlValue()));
}
}
public static string ToSqlValue(this string value)
{
return string.Format("'{0}'", value.ToSqlFilter());
}
/// <summary>
///Sql Filter
/// </summary>
/// <param name="value"></param>
/// <returns></returns>
public static string ToSqlFilter(this string value)
{
if (!value.IsNullOrEmpty())
{
value = value.Replace("'", "''");
}
return value;
}
}
}