Synchronization code

This commit is contained in:
sunkaixuan
2023-04-20 18:18:05 +08:00
parent 2b1ff9f968
commit c5636897ce

View File

@@ -7,6 +7,7 @@ namespace SqlSugar
{
public interface ISimpleClient<T> where T : class, new()
{
void CopyNew();
RepositoryType CopyNew<RepositoryType>() where RepositoryType : ISugarRepository;
SimpleClient<ChangeType> Change<ChangeType>() where ChangeType : class, new();
RepositoryType ChangeRepository<RepositoryType>() where RepositoryType : ISugarRepository ;