- 增加 FreeSqlBuilder UseQuoteSqlName 设置不使用 [] `` "" 限定符号;

This commit is contained in:
2881099
2022-12-23 08:22:11 +08:00
parent 9fefbb94ec
commit ef6d790dcc
33 changed files with 56 additions and 224 deletions

View File

@ -41,7 +41,7 @@ namespace FreeSql.Custom
static FreeSql.Custom.CustomAdo _customAdo = new FreeSql.Custom.CustomAdo();
public override string FormatSql(string sql, params object[] args) => (_orm?.Ado as CustomAdo)?.Addslashes(sql, args) ?? _customAdo.Addslashes(sql, args);
public override string QuoteSqlName(params string[] name)
public override string QuoteSqlNameAdapter(params string[] name)
{
if (name.Length == 1)
{