diff --git a/Src/Asp.Net/SqlSugar/ScopedClient.cs b/Src/Asp.Net/SqlSugar/ScopedClient.cs index 9ab985bdd..dde4fe6e9 100644 --- a/Src/Asp.Net/SqlSugar/ScopedClient.cs +++ b/Src/Asp.Net/SqlSugar/ScopedClient.cs @@ -1,5 +1,6 @@ using System; using System.Collections.Generic; +using System.Diagnostics; using System.Dynamic; using System.Linq.Expressions; using System.Text; @@ -33,29 +34,63 @@ namespace SqlSugar this.db = new SqlSugarClient(configs); this.configAction = configAction; } - public ScopedClient(SqlSugarClient context,Action configAction) - { - this.db = context; - this.configAction = configAction; - } + //public ScopedClient(SqlSugarClient context,Action configAction) + //{ + // this.db = context; + // this.configAction = configAction; + //} public SqlSugarClient ScopedContext { get { + SqlSugarClient result = null; var key = db.GetHashCode().ToString(); - SqlSugarClient result = CallContextAsync.GetData(key); - if (result == null) + StackTrace st = new StackTrace(true); + var methods = st.GetFrames(); + var isAsync = UtilMethods.IsAnyAsyncMethod(methods); + if (isAsync) { - CallContextAsync.SetData(key, new SqlSugarClient(db._allConfigs)); - result = CallContextAsync.GetData(key); - if (this.configAction != null) - { - this.configAction(result); - } + result=GetAsyncContext(key); + } + else + { + result = GetThreadContext(key); } return result; } } + + private SqlSugarClient GetAsyncContext(string key) + { + SqlSugarClient result = CallContextAsync.GetData(key); + if (result == null) + { + CallContextAsync.SetData(key, new SqlSugarClient(db._allConfigs)); + result = CallContextAsync.GetData(key); + if (this.configAction != null) + { + this.configAction(result); + } + } + + return result; + } + + private SqlSugarClient GetThreadContext(string key) + { + SqlSugarClient result = CallContextThread.GetData(key); + if (result == null) + { + CallContextThread.SetData(key, new SqlSugarClient(db._allConfigs)); + result = CallContextThread.GetData(key); + if (this.configAction != null) + { + this.configAction(result); + } + } + return result; + } + public MappingTableList MappingTables { get => ScopedContext.MappingTables; set => ScopedContext.MappingTables = value; } public MappingColumnList MappingColumns { get => ScopedContext.MappingColumns; set => ScopedContext.MappingColumns=value; } public IgnoreColumnList IgnoreColumns { get => ScopedContext.IgnoreColumns; set => ScopedContext.IgnoreColumns=value; } diff --git a/Src/Asp.Net/SqlSugar/Utilities/CallContextAsync.cs b/Src/Asp.Net/SqlSugar/Utilities/CallContextAsync.cs index c822fcffd..31f128863 100644 --- a/Src/Asp.Net/SqlSugar/Utilities/CallContextAsync.cs +++ b/Src/Asp.Net/SqlSugar/Utilities/CallContextAsync.cs @@ -16,4 +16,13 @@ namespace SqlSugar public static T GetData(string name) => state.TryGetValue(name, out AsyncLocal data) ? data.Value : default(T); } + + public class CallContextThread + { + static ConcurrentDictionary> state = new ConcurrentDictionary>(); + public static void SetData(string name, T data) => + state.GetOrAdd(name, _ => new ThreadLocal()).Value = data; + public static T GetData(string name) => + state.TryGetValue(name, out ThreadLocal data) ? data.Value : default(T); + } }