old_flsystem/类库/SqlSugar/Utilities/CallContext.cs

16 lines
336 B
C#

using System;
using System.Collections.Generic;
using System.Data;
using System.Data.Common;
using System.Linq;
using System.Text;
using System.Threading;
namespace SqlSugar
{
internal class CallContext
{
public static ThreadLocal<List<SqlSugarClient>> ContextList = new ThreadLocal<List<SqlSugarClient>>();
}
}