mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-05-10 23:57:59 +08:00
-
This commit is contained in:
parent
37dd750a1b
commit
3d985c35bb
@ -15,6 +15,11 @@ namespace SqlSugar
|
|||||||
#region T11
|
#region T11
|
||||||
public partial class QueryableProvider<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> : QueryableProvider<T>, ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>
|
public partial class QueryableProvider<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> : QueryableProvider<T>, ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>
|
||||||
{
|
{
|
||||||
|
public new ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10,T11> Hints(string hints)
|
||||||
|
{
|
||||||
|
this.QueryBuilder.Hints = hints;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
public new ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9,T10,T11> OrderByPropertyName(string orderPropertyName, OrderByType? orderByType = null)
|
public new ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9,T10,T11> OrderByPropertyName(string orderPropertyName, OrderByType? orderByType = null)
|
||||||
{
|
{
|
||||||
base.OrderByPropertyName(orderPropertyName, orderByType);
|
base.OrderByPropertyName(orderPropertyName, orderByType);
|
||||||
@ -738,6 +743,11 @@ namespace SqlSugar
|
|||||||
#region T12
|
#region T12
|
||||||
public partial class QueryableProvider<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> : QueryableProvider<T>, ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>
|
public partial class QueryableProvider<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> : QueryableProvider<T>, ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>
|
||||||
{
|
{
|
||||||
|
public new ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,T12> Hints(string hints)
|
||||||
|
{
|
||||||
|
this.QueryBuilder.Hints = hints;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
public new ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,T12> OrderByPropertyName(string orderPropertyName, OrderByType? orderByType = null)
|
public new ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,T12> OrderByPropertyName(string orderPropertyName, OrderByType? orderByType = null)
|
||||||
{
|
{
|
||||||
base.OrderByPropertyName(orderPropertyName, orderByType);
|
base.OrderByPropertyName(orderPropertyName, orderByType);
|
||||||
|
Loading…
Reference in New Issue
Block a user