using System.Linq; namespace SqlSugar { public static class DbExtensions { public static string ToJoinSqlInVals(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()); } /// ///Sql Filter /// /// /// public static string ToSqlFilter(this string value) { if (!value.IsNullOrEmpty()) { value = value.Replace("'", "''"); } return value; } } }