mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-24 18:04:52 +08:00
解决Storageable缓慢的问题
This commit is contained in:
parent
b8c2028ac7
commit
2ff608acbb
@ -32,7 +32,7 @@ namespace SqlSugar
|
||||
}
|
||||
|
||||
Expression<Func<T, bool>> queryableWhereExp;
|
||||
public IStorageable<T> Where(Expression<Func<T, bool>> exp)
|
||||
public IStorageable<T> TableDataRange(Expression<Func<T, bool>> exp)
|
||||
{
|
||||
this.queryableWhereExp = exp;
|
||||
return this;
|
||||
|
@ -8,7 +8,7 @@ namespace SqlSugar
|
||||
{
|
||||
public interface IStorageable<T> where T : class, new()
|
||||
{
|
||||
IStorageable<T> Where(Expression<Func<T, bool>> exp);
|
||||
IStorageable<T> TableDataRange(Expression<Func<T, bool>> exp);
|
||||
IStorageable<T> WhereColumns(Expression<Func<T, object>> columns);
|
||||
IStorageable<T> WhereColumns(Expression<Func<T, object>> columns,Func<DateTime,string> formatTime);
|
||||
IStorageable<T> WhereColumns(string [] columns);
|
||||
|
Loading…
Reference in New Issue
Block a user