mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 17:37:58 +08:00
Update ScopedClient
This commit is contained in:
parent
6431ce7d40
commit
d9b5783921
@ -14,6 +14,24 @@ namespace SqlSugar
|
||||
private ScopedClient()
|
||||
{
|
||||
|
||||
}
|
||||
public ScopedClient(ConnectionConfig config)
|
||||
{
|
||||
this.db = new SqlSugarClient(config);
|
||||
}
|
||||
public ScopedClient(List<ConnectionConfig> configs)
|
||||
{
|
||||
this.db = new SqlSugarClient(configs);
|
||||
}
|
||||
public ScopedClient(ConnectionConfig config, Action<SqlSugarClient> configAction)
|
||||
{
|
||||
this.db = new SqlSugarClient(config);
|
||||
this.configAction = configAction;
|
||||
}
|
||||
public ScopedClient(List<ConnectionConfig> configs, Action<SqlSugarClient> configAction)
|
||||
{
|
||||
this.db = new SqlSugarClient(configs);
|
||||
this.configAction = configAction;
|
||||
}
|
||||
public ScopedClient(SqlSugarClient context,Action<SqlSugarClient> configAction)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user