mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-06-28 13:34:32 +08:00
Synchronization code
This commit is contained in:
parent
25da26eec4
commit
1903e30579
@ -7,6 +7,7 @@ namespace SqlSugar
|
|||||||
{
|
{
|
||||||
public interface ISimpleClient<T> where T : class, new()
|
public interface ISimpleClient<T> where T : class, new()
|
||||||
{
|
{
|
||||||
|
ISqlSugarClient CopyNew();
|
||||||
RepositoryType CopyNew<RepositoryType>() where RepositoryType : ISugarRepository;
|
RepositoryType CopyNew<RepositoryType>() where RepositoryType : ISugarRepository;
|
||||||
SimpleClient<ChangeType> Change<ChangeType>() where ChangeType : class, new();
|
SimpleClient<ChangeType> Change<ChangeType>() where ChangeType : class, new();
|
||||||
RepositoryType ChangeRepository<RepositoryType>() where RepositoryType : ISugarRepository ;
|
RepositoryType ChangeRepository<RepositoryType>() where RepositoryType : ISugarRepository ;
|
||||||
|
@ -35,6 +35,11 @@ namespace SqlSugar
|
|||||||
{
|
{
|
||||||
return this.Context.GetSimpleClient<ChangeType>();
|
return this.Context.GetSimpleClient<ChangeType>();
|
||||||
}
|
}
|
||||||
|
public ISqlSugarClient CopyNew()
|
||||||
|
{
|
||||||
|
this.Context = this.Context.CopyNew();
|
||||||
|
return this.Context;
|
||||||
|
}
|
||||||
public RepositoryType CopyNew<RepositoryType>() where RepositoryType : ISugarRepository
|
public RepositoryType CopyNew<RepositoryType>() where RepositoryType : ISugarRepository
|
||||||
{
|
{
|
||||||
Type type = typeof(RepositoryType);
|
Type type = typeof(RepositoryType);
|
||||||
|
Loading…
Reference in New Issue
Block a user