Browse Source

Synchronization code

pull/32/head
sunkaixuan 2 years ago
parent
commit
c5636897ce
  1. 1
      Src/Asp.NetCore2/SqlSugar/Interface/ISimpleClient.cs

1
Src/Asp.NetCore2/SqlSugar/Interface/ISimpleClient.cs

@ -7,6 +7,7 @@ namespace SqlSugar
{ {
public interface ISimpleClient<T> where T : class, new() public interface ISimpleClient<T> where T : class, new()
{ {
void 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 ;

Loading…
Cancel
Save