Synchronization code

This commit is contained in:
sunkaixuan
2022-12-02 03:53:27 +08:00
parent f9e7f7d9c4
commit fb87a0d178
8 changed files with 263 additions and 1 deletions

View File

@@ -170,5 +170,15 @@ namespace SqlSugar
{
return this;
}
public List<T> ToList()
{
return new List<T>();
}
public List<TResult> ToList<TResult>(Func<T, TResult> selector) where TResult:class,new()
{
return null;
}
}
}