mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-05-03 12:18:00 +08:00
Synchronization code
This commit is contained in:
parent
5130eca271
commit
f319b3073b
@ -305,7 +305,7 @@ namespace SqlSugar
|
||||
#region Order
|
||||
public new ISugarQueryable<T,T2> OrderBy(List<OrderByModel> models)
|
||||
{
|
||||
this.OrderBy(models);
|
||||
base.OrderBy(models);
|
||||
return this;
|
||||
}
|
||||
public new ISugarQueryable<T, T2> OrderBy(string orderFileds)
|
||||
@ -983,7 +983,7 @@ namespace SqlSugar
|
||||
#region Order
|
||||
public new ISugarQueryable<T, T2, T3> OrderBy(List<OrderByModel> models)
|
||||
{
|
||||
this.OrderBy(models);
|
||||
base.OrderBy(models);
|
||||
return this;
|
||||
}
|
||||
public new virtual ISugarQueryable<T, T2, T3> OrderByDescending(Expression<Func<T, object>> expression)
|
||||
@ -1756,7 +1756,7 @@ namespace SqlSugar
|
||||
#region OrderBy
|
||||
public new ISugarQueryable<T, T2,T3,T4> OrderBy(List<OrderByModel> models)
|
||||
{
|
||||
this.OrderBy(models);
|
||||
base.OrderBy(models);
|
||||
return this;
|
||||
}
|
||||
public new virtual ISugarQueryable<T, T2, T3, T4> OrderByDescending(Expression<Func<T, object>> expression)
|
||||
@ -2567,7 +2567,7 @@ namespace SqlSugar
|
||||
#region OrderBy
|
||||
public new ISugarQueryable<T, T2, T3,T4,T5> OrderBy(List<OrderByModel> models)
|
||||
{
|
||||
this.OrderBy(models);
|
||||
base.OrderBy(models);
|
||||
return this;
|
||||
}
|
||||
public new virtual ISugarQueryable<T, T2, T3, T4, T5> OrderByDescending(Expression<Func<T, object>> expression)
|
||||
|
@ -356,7 +356,7 @@ namespace SqlSugar
|
||||
#region OrderBy
|
||||
public new ISugarQueryable<T, T2, T3, T4, T5,T6> OrderBy(List<OrderByModel> models)
|
||||
{
|
||||
this.OrderBy(models);
|
||||
base.OrderBy(models);
|
||||
return this;
|
||||
}
|
||||
public new virtual ISugarQueryable<T, T2, T3, T4, T5, T6> OrderByDescending(Expression<Func<T, object>> expression)
|
||||
@ -1167,7 +1167,7 @@ namespace SqlSugar
|
||||
#region OrderBy
|
||||
public new ISugarQueryable<T, T2, T3, T4, T5,T6,T7> OrderBy(List<OrderByModel> models)
|
||||
{
|
||||
this.OrderBy(models);
|
||||
base.OrderBy(models);
|
||||
return this;
|
||||
}
|
||||
public new virtual ISugarQueryable<T, T2, T3, T4, T5, T6,T7> OrderByDescending(Expression<Func<T, object>> expression)
|
||||
@ -1992,7 +1992,7 @@ namespace SqlSugar
|
||||
#region OrderBy
|
||||
public new ISugarQueryable<T, T2, T3, T4, T5, T6, T7,T8> OrderBy(List<OrderByModel> models)
|
||||
{
|
||||
this.OrderBy(models);
|
||||
base.OrderBy(models);
|
||||
return this;
|
||||
}
|
||||
public new virtual ISugarQueryable<T, T2, T3, T4, T5, T6, T7,T8> OrderByDescending(Expression<Func<T, object>> expression)
|
||||
@ -2731,7 +2731,7 @@ namespace SqlSugar
|
||||
#region OrderBy
|
||||
public new ISugarQueryable<T, T2, T3, T4, T5, T6, T7,T8,T9> OrderBy(List<OrderByModel> models)
|
||||
{
|
||||
this.OrderBy(models);
|
||||
base.OrderBy(models);
|
||||
return this;
|
||||
}
|
||||
public new ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9> OrderBy(string orderFileds)
|
||||
@ -3451,7 +3451,7 @@ namespace SqlSugar
|
||||
#region OrderBy
|
||||
public new ISugarQueryable<T, T2, T3, T4, T5, T6, T7,T8,T9,T10> OrderBy(List<OrderByModel> models)
|
||||
{
|
||||
this.OrderBy(models);
|
||||
base.OrderBy(models);
|
||||
return this;
|
||||
}
|
||||
public new ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10> OrderBy(string orderFileds)
|
||||
|
@ -391,7 +391,7 @@ namespace SqlSugar
|
||||
#region OrderBy
|
||||
public new ISugarQueryable<T, T2, T3, T4, T5, T6, T7,T8, T9, T10,T11> OrderBy(List<OrderByModel> models)
|
||||
{
|
||||
this.OrderBy(models);
|
||||
base.OrderBy(models);
|
||||
return this;
|
||||
}
|
||||
public new ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> OrderBy(string orderFileds)
|
||||
@ -1010,7 +1010,7 @@ namespace SqlSugar
|
||||
#region OrderBy
|
||||
public new ISugarQueryable<T, T2, T3, T4, T5, T6, T7,T8, T9, T10, T11,T12> OrderBy(List<OrderByModel> models)
|
||||
{
|
||||
this.OrderBy(models);
|
||||
base.OrderBy(models);
|
||||
return this;
|
||||
}
|
||||
public new ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> OrderBy(string orderFileds)
|
||||
|
Loading…
Reference in New Issue
Block a user