mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-12-01 19:03:58 +08:00
-
This commit is contained in:
@@ -166,31 +166,6 @@ namespace SqlSugar
|
|||||||
QueryBuilder.Parameters.AddRange(Context.Ado.GetParameters(whereObj));
|
QueryBuilder.Parameters.AddRange(Context.Ado.GetParameters(whereObj));
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
public ISugarQueryable<T> Having<T2>(Expression<Func<T2, bool>> expression)
|
|
||||||
{
|
|
||||||
this._Having(expression);
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
public ISugarQueryable<T> Having<T2, T3>(Expression<Func<T2, T3, bool>> expression)
|
|
||||||
{
|
|
||||||
this._Having(expression);
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
public ISugarQueryable<T> Having<T2, T3, T4>(Expression<Func<T2, T3, T4, bool>> expression)
|
|
||||||
{
|
|
||||||
this._Having(expression);
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
public ISugarQueryable<T> Having<T2, T3, T4, T5>(Expression<Func<T2, T3, T4, T5, bool>> expression)
|
|
||||||
{
|
|
||||||
this._Having(expression);
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
public ISugarQueryable<T> Having<T2, T3, T4, T5, T6>(Expression<Func<T2, T3, T4, T5, T6, bool>> expression)
|
|
||||||
{
|
|
||||||
this._Having(expression);
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
|
|
||||||
public virtual ISugarQueryable<T> WhereIF(bool isWhere, Expression<Func<T, bool>> expression)
|
public virtual ISugarQueryable<T> WhereIF(bool isWhere, Expression<Func<T, bool>> expression)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user