diff --git a/Src/Asp.NetCore2/SqlSeverTest/SqlSugar/Interface/IUpdateable.cs b/Src/Asp.NetCore2/SqlSeverTest/SqlSugar/Interface/IUpdateable.cs index 1a31c9292..9335a616f 100644 --- a/Src/Asp.NetCore2/SqlSeverTest/SqlSugar/Interface/IUpdateable.cs +++ b/Src/Asp.NetCore2/SqlSeverTest/SqlSugar/Interface/IUpdateable.cs @@ -16,6 +16,7 @@ namespace SqlSugar Task ExecuteCommandHasChangeAsync(); IUpdateable AS(string tableName); IUpdateable With(string lockString); + [Obsolete] IUpdateable Where(bool isNoUpdateNull,bool IsOffIdentity = false); IUpdateable Where(Expression> expression); IUpdateable Where(string whereSql,object parameters=null); @@ -32,6 +33,7 @@ namespace SqlSugar /// /// /// + IUpdateable IgnoreColumns(bool IgnoreAllNullColumns, bool IsOffIdentity = false); IUpdateable WhereColumns(Expression> columns); IUpdateable UpdateColumns(Expression> columns); IUpdateable UpdateColumns(Expression> columns);