mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-24 18:04:52 +08:00
Update SimpleClient
This commit is contained in:
parent
42eafeb1f6
commit
338ce461f3
@ -18,6 +18,7 @@ namespace SqlSugar
|
||||
ITenant AsTenant();
|
||||
IUpdateable<T> AsUpdateable(List<T> updateObjs);
|
||||
IUpdateable<T> AsUpdateable(T updateObj);
|
||||
IUpdateable<T> AsUpdateable();
|
||||
IUpdateable<T> AsUpdateable(T[] updateObjs);
|
||||
int Count(Expression<Func<T, bool>> whereExpression);
|
||||
bool Delete(Expression<Func<T, bool>> whereExpression);
|
||||
|
@ -74,6 +74,10 @@ namespace SqlSugar
|
||||
{
|
||||
return Context.Updateable<T>(updateObjs);
|
||||
}
|
||||
public IUpdateable<T> AsUpdateable()
|
||||
{
|
||||
return Context.Updateable<T>();
|
||||
}
|
||||
public IDeleteable<T> AsDeleteable()
|
||||
{
|
||||
return Context.Deleteable<T>();
|
||||
|
Loading…
Reference in New Issue
Block a user