Browse Source
Merge pull request #65 from xland/patch-7
修改一个令人蛋蛋发疼的接口名
pull/12/MERGE
sunkaixuan
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
0 deletions
-
Src/Asp.NetCore2/SqlSeverTest/SqlSugar/Interface/IUpdateable.cs
|
|
@ -16,6 +16,7 @@ namespace SqlSugar |
|
|
|
Task<bool> ExecuteCommandHasChangeAsync(); |
|
|
|
IUpdateable<T> AS(string tableName); |
|
|
|
IUpdateable<T> With(string lockString); |
|
|
|
[Obsolete] |
|
|
|
IUpdateable<T> Where(bool isNoUpdateNull,bool IsOffIdentity = false); |
|
|
|
IUpdateable<T> Where(Expression<Func<T, bool>> expression); |
|
|
|
IUpdateable<T> Where(string whereSql,object parameters=null); |
|
|
@ -32,6 +33,7 @@ namespace SqlSugar |
|
|
|
/// </summary>
|
|
|
|
/// <param name="columns"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
IUpdateable<T> IgnoreColumns(bool IgnoreAllNullColumns, bool IsOffIdentity = false); |
|
|
|
IUpdateable<T> WhereColumns(Expression<Func<T, object>> columns); |
|
|
|
IUpdateable<T> UpdateColumns(Expression<Func<T, object>> columns); |
|
|
|
IUpdateable<T> UpdateColumns(Expression<Func<T, bool>> columns); |
|
|
|