using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Commom.Utility
{
public static class Utility
{
///
/// 字符串添加单引号
///
///
///
public static string AddQuotes(this string str)
{
if (str == null)
{
str = "";
}
str = str.Replace("'", "''");
return "'" + str + "'";
}
}
}