diff --git a/Src/Asp.NetCore2/SqlSugar/Abstract/ExecuteNavProvider/UpdateInsert.cs b/Src/Asp.NetCore2/SqlSugar/Abstract/ExecuteNavProvider/UpdateInsert.cs deleted file mode 100644 index f1904cbac..000000000 --- a/Src/Asp.NetCore2/SqlSugar/Abstract/ExecuteNavProvider/UpdateInsert.cs +++ /dev/null @@ -1,41 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Linq.Expressions; -using System.Text; -using System.Threading.Tasks; - -namespace SqlSugar -{ - public class UpdateNavProvider - { - - public List Roots { get; set; } - public SqlSugarProvider Context { get; internal set; } - - public UpdateNavProvider ThenInclude(Expression> expression) - { - throw new Exception("开发中7月15号之前上线"); - } - public UpdateNavProvider Include(Expression> expression) - { - throw new Exception("开发中7月15号之前上线"); - } - public UpdateNavProvider ThenInclude(Expression>> expression) - { - throw new Exception("开发中7月15号之前上线"); - } - public UpdateNavProvider Include(Expression>> expression) - { - throw new Exception("开发中7月15号之前上线"); - } - public bool ExecuteCommand() - { - return true; - } - private UpdateNavProvider AsNav() - { - return null; - } - } -}