This commit is contained in:
skx 2021-01-07 23:31:21 +08:00
parent a425256ca4
commit 637127d2c2

View File

@ -7,6 +7,7 @@ namespace SqlSugar
{
public interface ISimpleClient<T> where T : class, new()
{
SimpleClient<ChangeType> Change<ChangeType>() where ChangeType : class, new();
IDeleteable<T> AsDeleteable();
IInsertable<T> AsInsertable(List<T> insertObjs);
IInsertable<T> AsInsertable(T insertObj);