From a991b024634f230b6ef94816f7ff6d7e0abc4c8d Mon Sep 17 00:00:00 2001 From: liulun <412588801@qq.com> Date: Sat, 9 Jun 2018 18:36:35 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=B8=80=E4=B8=AA=E4=BB=A4?= =?UTF-8?q?=E4=BA=BA=E8=9B=8B=E8=9B=8B=E5=8F=91=E7=96=BC=E7=9A=84=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Src/Asp.NetCore2/SqlSeverTest/SqlSugar/Interface/IUpdateable.cs | 2 ++ 1 file changed, 2 insertions(+) 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);