|
|
@ -36,6 +36,8 @@ namespace SqlSugar |
|
|
|
T GetSingle(Expression<Func<T, bool>> whereExpression); |
|
|
|
T GetFirst(Expression<Func<T, bool>> whereExpression); |
|
|
|
bool Insert(T insertObj); |
|
|
|
bool InsertOrUpdate(T data); |
|
|
|
bool InsertOrUpdate(List<T> datas); |
|
|
|
bool InsertRange(List<T> insertObjs); |
|
|
|
bool InsertRange(T[] insertObjs); |
|
|
|
int InsertReturnIdentity(T insertObj); |
|
|
@ -69,6 +71,8 @@ namespace SqlSugar |
|
|
|
Task<T> GetSingleAsync(Expression<Func<T, bool>> whereExpression); |
|
|
|
Task<T> GetFirstAsync(Expression<Func<T, bool>> whereExpression); |
|
|
|
Task<bool> InsertAsync(T insertObj); |
|
|
|
Task<bool> InsertOrUpdateAsync(T data); |
|
|
|
Task<bool> InsertOrUpdateAsync(List<T> datas); |
|
|
|
Task<bool> InsertRangeAsync(List<T> insertObjs); |
|
|
|
Task<bool> InsertRangeAsync(T[] insertObjs); |
|
|
|
Task<int> InsertReturnIdentityAsync(T insertObj); |
|
|
|