mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-18 20:08:15 +08:00
- 增加 DuckDB 数据库支持;
This commit is contained in:
17
Providers/FreeSql.Provider.Duckdb/DuckdbExtensions.cs
Normal file
17
Providers/FreeSql.Provider.Duckdb/DuckdbExtensions.cs
Normal file
@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Linq.Expressions;
|
||||
using FreeSql;
|
||||
using FreeSql.Duckdb.Curd;
|
||||
|
||||
public static partial class FreeSqlDuckdbGlobalExtensions
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 特殊处理类似 string.Format 的使用方法,防止注入,以及 IS NULL 转换
|
||||
/// </summary>
|
||||
/// <param name="that"></param>
|
||||
/// <param name="args"></param>
|
||||
/// <returns></returns>
|
||||
public static string FormatDuckdb(this string that, params object[] args) => _duckdbAdo.Addslashes(that, args);
|
||||
static FreeSql.Duckdb.DuckdbAdo _duckdbAdo = new FreeSql.Duckdb.DuckdbAdo();
|
||||
}
|
Reference in New Issue
Block a user