mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-12-01 19:03:58 +08:00
-
This commit is contained in:
@@ -20,7 +20,8 @@ namespace SqlSugar
|
||||
}
|
||||
public partial class QueryableProvider<T, T2> : QueryableProvider<T>, ISugarQueryable<T, T2>
|
||||
{
|
||||
public new ISugarQueryable<T, T2> Where(Expression<Func<T, bool>> expression) {
|
||||
public new ISugarQueryable<T, T2> Where(Expression<Func<T, bool>> expression)
|
||||
{
|
||||
_Where(expression);
|
||||
return this;
|
||||
}
|
||||
@@ -37,13 +38,13 @@ namespace SqlSugar
|
||||
|
||||
public ISugarQueryable<T, T2> OrderBy(Expression<Func<T, T2, object>> expression, OrderByType type = OrderByType.Asc)
|
||||
{
|
||||
this._OrderBy(expression, type);
|
||||
_OrderBy(expression, type);
|
||||
return this;
|
||||
}
|
||||
|
||||
public new ISugarQueryable<T, T2> OrderBy(Expression<Func<T, object>> expression, OrderByType type)
|
||||
{
|
||||
this._OrderBy(expression, type);
|
||||
_OrderBy(expression, type);
|
||||
return this;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user