mirror of
https://github.com/dotnetcore/FreeSql.git
synced 2026-03-02 12:10:56 +08:00
12 lines
459 B
C#
12 lines
459 B
C#
public static partial class FreeSqlGlobalExtensions {
|
|
|
|
/// <summary>
|
|
/// 特殊处理类似 string.Format 的使用方法,防止注入,以及 IS NULL 转换
|
|
/// </summary>
|
|
/// <param name="that"></param>
|
|
/// <param name="args"></param>
|
|
/// <returns></returns>
|
|
public static string FormatMySql(this string that, params object[] args) => _mysqlAdo.Addslashes(that, args);
|
|
static FreeSql.MySql.MySqlAdo _mysqlAdo = new FreeSql.MySql.MySqlAdo();
|
|
}
|