mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-19 10:08:19 +08:00
-
This commit is contained in:
@@ -1286,6 +1286,24 @@ namespace SqlSugar
|
||||
_GroupBy(expression);
|
||||
return this;
|
||||
}
|
||||
|
||||
public new ISugarQueryable<T, T2> Having(Expression<Func<T, bool>> expression)
|
||||
{
|
||||
this._Having(expression);
|
||||
return this;
|
||||
}
|
||||
|
||||
public ISugarQueryable<T, T2> Having(Expression<Func<T, T2, bool>> expression)
|
||||
{
|
||||
this._Having(expression);
|
||||
return this;
|
||||
}
|
||||
|
||||
public new ISugarQueryable<T, T2> Having(string whereString, object whereObj)
|
||||
{
|
||||
base.Having(whereString,whereObj);
|
||||
return this;
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Aggr
|
||||
@@ -1425,6 +1443,30 @@ namespace SqlSugar
|
||||
_GroupBy(expression);
|
||||
return this;
|
||||
}
|
||||
|
||||
public new ISugarQueryable<T, T2,T3> Having(Expression<Func<T, bool>> expression)
|
||||
{
|
||||
this._Having(expression);
|
||||
return this;
|
||||
}
|
||||
|
||||
public ISugarQueryable<T, T2,T3> Having(Expression<Func<T, T2, bool>> expression)
|
||||
{
|
||||
this._Having(expression);
|
||||
return this;
|
||||
}
|
||||
|
||||
public ISugarQueryable<T, T2, T3> Having(Expression<Func<T, T2,T3, bool>> expression)
|
||||
{
|
||||
this._Having(expression);
|
||||
return this;
|
||||
}
|
||||
|
||||
public new ISugarQueryable<T, T2,T3> Having(string whereString, object whereObj)
|
||||
{
|
||||
base.Having(whereString, whereObj);
|
||||
return this;
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Order
|
||||
@@ -1819,6 +1861,35 @@ namespace SqlSugar
|
||||
_GroupBy(expression);
|
||||
return this;
|
||||
}
|
||||
public new ISugarQueryable<T, T2, T3,T4> Having(Expression<Func<T, bool>> expression)
|
||||
{
|
||||
this._Having(expression);
|
||||
return this;
|
||||
}
|
||||
|
||||
public ISugarQueryable<T, T2, T3,T4> Having(Expression<Func<T, T2, bool>> expression)
|
||||
{
|
||||
this._Having(expression);
|
||||
return this;
|
||||
}
|
||||
|
||||
public ISugarQueryable<T, T2, T3,T4> Having(Expression<Func<T, T2, T3, bool>> expression)
|
||||
{
|
||||
this._Having(expression);
|
||||
return this;
|
||||
}
|
||||
|
||||
public ISugarQueryable<T, T2, T3, T4> Having(Expression<Func<T, T2, T3,T4, bool>> expression)
|
||||
{
|
||||
this._Having(expression);
|
||||
return this;
|
||||
}
|
||||
|
||||
public new ISugarQueryable<T, T2, T3,T4> Having(string whereString, object whereObj)
|
||||
{
|
||||
base.Having(whereString, whereObj);
|
||||
return this;
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Aggr
|
||||
|
@@ -157,6 +157,9 @@ namespace SqlSugar
|
||||
#region GroupBy
|
||||
new ISugarQueryable<T, T2> GroupBy(Expression<Func<T, object>> expression);
|
||||
ISugarQueryable<T, T2> GroupBy(Expression<Func<T, T2, object>> expression);
|
||||
new ISugarQueryable<T,T2> Having(Expression<Func<T, bool>> expression);
|
||||
ISugarQueryable<T, T2> Having(Expression<Func<T,T2, bool>> expression);
|
||||
new ISugarQueryable<T,T2> Having(string whereString, object whereObj = null);
|
||||
#endregion
|
||||
|
||||
#region Aggr
|
||||
@@ -220,6 +223,10 @@ namespace SqlSugar
|
||||
new ISugarQueryable<T, T2, T3> GroupBy(Expression<Func<T, object>> expression);
|
||||
ISugarQueryable<T, T2, T3> GroupBy(Expression<Func<T, T2, object>> expression);
|
||||
ISugarQueryable<T, T2, T3> GroupBy(Expression<Func<T, T2, T3, object>> expression);
|
||||
new ISugarQueryable<T, T2,T3> Having(Expression<Func<T, bool>> expression);
|
||||
ISugarQueryable<T, T2,T3> Having(Expression<Func<T, T2, bool>> expression);
|
||||
ISugarQueryable<T, T2, T3> Having(Expression<Func<T, T2,T3, bool>> expression);
|
||||
new ISugarQueryable<T, T2,T3> Having(string whereString, object whereObj = null);
|
||||
#endregion
|
||||
|
||||
#region Aggr
|
||||
@@ -289,6 +296,11 @@ namespace SqlSugar
|
||||
ISugarQueryable<T, T2, T3, T4> GroupBy(Expression<Func<T, T2, object>> expression);
|
||||
ISugarQueryable<T, T2, T3, T4> GroupBy(Expression<Func<T, T2, T3, object>> expression);
|
||||
ISugarQueryable<T, T2, T3, T4> GroupBy(Expression<Func<T, T2, T3, T4, object>> expression);
|
||||
new ISugarQueryable<T, T2, T3,T4> Having(Expression<Func<T, bool>> expression);
|
||||
ISugarQueryable<T, T2, T3,T4> Having(Expression<Func<T, T2, bool>> expression);
|
||||
ISugarQueryable<T, T2, T3,T4> Having(Expression<Func<T, T2, T3, bool>> expression);
|
||||
ISugarQueryable<T, T2, T3, T4> Having(Expression<Func<T, T2, T3,T4, bool>> expression);
|
||||
new ISugarQueryable<T, T2,T3,T4> Having(string whereString, object whereObj = null);
|
||||
#endregion
|
||||
|
||||
#region Aggr
|
||||
|
Reference in New Issue
Block a user