diff --git a/Src/Asp.Net/SqlSugar/ScopedClient.cs b/Src/Asp.Net/SqlSugar/ScopedClient.cs index 20cf026ed..b1efddeff 100644 --- a/Src/Asp.Net/SqlSugar/ScopedClient.cs +++ b/Src/Asp.Net/SqlSugar/ScopedClient.cs @@ -390,57 +390,57 @@ namespace SqlSugar where T2 : class, new() where T3 : class, new() { - throw new NotImplementedException(); + return ScopedContext.Queryable(joinQueryable1, joinQueryable2, joinQueryable3,joinType1,joinExpression1,joinType2,joinExpression2); } public ISugarQueryable Queryable() { - throw new NotImplementedException(); + return ScopedContext.Queryable(); } public ISugarQueryable Queryable(ISugarQueryable queryable) where T : class, new() { - throw new NotImplementedException(); + return ScopedContext.Queryable(queryable); } public ISugarQueryable Queryable(string shortName) { - throw new NotImplementedException(); + return ScopedContext.Queryable(shortName); } public IReportable Reportable(T data) { - throw new NotImplementedException(); + return ScopedContext.Reportable(data); } public IReportable Reportable(List list) { - throw new NotImplementedException(); + return ScopedContext.Reportable(list); } public IReportable Reportable(T[] array) { - throw new NotImplementedException(); + return ScopedContext.Reportable(array); } public void RollbackTran() { - throw new NotImplementedException(); + ScopedContext.RollbackTran(); } public ISaveable Saveable(List saveObjects) where T : class, new() { - throw new NotImplementedException(); + return ScopedContext.Saveable(saveObjects); } public ISaveable Saveable(T saveObject) where T : class, new() { - throw new NotImplementedException(); + return ScopedContext.Saveable(saveObject); } public int SaveQueues(bool isTran = true) { - throw new NotImplementedException(); + return ScopedContext.SaveQueues(isTran); } public Tuple, List, List, List, List, List, List> SaveQueues(bool isTran = true)