mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-19 04:18:16 +08:00
- 完善 IDelete WhereIf(bool, sql) 方法;
This commit is contained in:
@ -53,6 +53,15 @@ namespace FreeSql
|
||||
/// <returns></returns>
|
||||
IDelete<T1> Where(string sql, object parms = null);
|
||||
/// <summary>
|
||||
/// 原生sql语法条件,Where("id = @id", new { id = 1 })<para></para>
|
||||
/// 提示:parms 参数还可以传 Dictionary<string, object>
|
||||
/// </summary>
|
||||
/// <param name="condition">true 时生效</param>
|
||||
/// <param name="sql">sql语法条件</param>
|
||||
/// <param name="parms">参数</param>
|
||||
/// <returns></returns>
|
||||
IDelete<T1> WhereIf(bool condition, string sql, object parms = null);
|
||||
/// <summary>
|
||||
/// 传入实体,将主键作为条件
|
||||
/// </summary>
|
||||
/// <param name="item">实体</param>
|
||||
|
Reference in New Issue
Block a user