|
|
@ -15,7 +15,7 @@ namespace SqlSugar |
|
|
|
ISugarQueryable<T> AS<T2>(string tableName); |
|
|
|
ISugarQueryable<T> AS(string tableName); |
|
|
|
ISugarQueryable<T> With(string withString); |
|
|
|
ISugarQueryable<T> Filter(string FilterName, bool isDisabledGobalFilter= false); |
|
|
|
ISugarQueryable<T> Filter(string FilterName, bool isDisabledGobalFilter = false); |
|
|
|
ISugarQueryable<T> AddParameters(object pars); |
|
|
|
ISugarQueryable<T> AddParameters(SugarParameter[] pars); |
|
|
|
ISugarQueryable<T> AddJoinInfo(string tableName, string shortName, string joinWhere, JoinType type = JoinType.Left); |
|
|
@ -57,7 +57,7 @@ namespace SqlSugar |
|
|
|
|
|
|
|
bool Any(Expression<Func<T, bool>> expression); |
|
|
|
bool Any(); |
|
|
|
|
|
|
|
|
|
|
|
ISugarQueryable<TResult> Select<TResult>(Expression<Func<T, TResult>> expression); |
|
|
|
ISugarQueryable<TResult> Select<TResult>(string select) where TResult : class, new(); |
|
|
|
ISugarQueryable<T> Select(string select); |
|
|
@ -96,6 +96,9 @@ namespace SqlSugar |
|
|
|
#region Where
|
|
|
|
new ISugarQueryable<T, T2> Where(Expression<Func<T, bool>> expression); |
|
|
|
ISugarQueryable<T, T2> Where(Expression<Func<T, T2, bool>> expression); |
|
|
|
|
|
|
|
ISugarQueryable<T, T2> WhereIf(bool isWhere, Expression<Func<T, bool>> expression); |
|
|
|
ISugarQueryable<T, T2> WhereIf(bool isWhere, Expression<Func<T, T2, bool>> expression); |
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region Select
|
|
|
@ -118,6 +121,10 @@ namespace SqlSugar |
|
|
|
new ISugarQueryable<T, T2, T3> Where(Expression<Func<T, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3> Where(Expression<Func<T, T2, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3> Where(Expression<Func<T, T2, T3, bool>> expression); |
|
|
|
|
|
|
|
ISugarQueryable<T, T2, T3> WhereIf(bool isWhere, Expression<Func<T, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3> WhereIf(bool isWhere, Expression<Func<T, T2, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3> WhereIf(bool isWhere, Expression<Func<T, T2, T3, bool>> expression); |
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region Select
|
|
|
@ -144,6 +151,11 @@ namespace SqlSugar |
|
|
|
ISugarQueryable<T, T2, T3, T4> Where(Expression<Func<T, T2, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4> Where(Expression<Func<T, T2, T3, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4> Where(Expression<Func<T, T2, T3, T4, bool>> expression); |
|
|
|
|
|
|
|
new ISugarQueryable<T, T2, T3, T4> WhereIf(bool isWhere, Expression<Func<T, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4> WhereIf(bool isWhere, Expression<Func<T, T2, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4> WhereIf(bool isWhere, Expression<Func<T, T2, T3, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4> WhereIf(bool isWhere, Expression<Func<T, T2, T3, T4, bool>> expression); |
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region Select
|
|
|
@ -174,6 +186,13 @@ namespace SqlSugar |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5> Where(Expression<Func<T, T2, T3, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5> Where(Expression<Func<T, T2, T3, T4, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5> Where(Expression<Func<T, T2, T3, T4, T5, bool>> expression); |
|
|
|
|
|
|
|
|
|
|
|
ISugarQueryable<T, T2, T3, T4, T5> WhereIf(bool isWhere, Expression<Func<T, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5> WhereIf(bool isWhere, Expression<Func<T, T2, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5> WhereIf(bool isWhere, Expression<Func<T, T2, T3, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5> WhereIf(bool isWhere, Expression<Func<T, T2, T3, T4, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5> WhereIf(bool isWhere, Expression<Func<T, T2, T3, T4, T5, bool>> expression); |
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region Select
|
|
|
@ -208,6 +227,13 @@ namespace SqlSugar |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6> Where(Expression<Func<T, T2, T3, T4, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6> Where(Expression<Func<T, T2, T3, T4, T5, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6> Where(Expression<Func<T, T2, T3, T4, T5, T6, bool>> expression); |
|
|
|
|
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6> WhereIf(bool isWhere, Expression<Func<T, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6> WhereIf(bool isWhere, Expression<Func<T, T2, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6> WhereIf(bool isWhere, Expression<Func<T, T2, T3, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6> WhereIf(bool isWhere, Expression<Func<T, T2, T3, T4, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6> WhereIf(bool isWhere, Expression<Func<T, T2, T3, T4, T5, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6> WhereIf(bool isWhere, Expression<Func<T, T2, T3, T4, T5, T6, bool>> expression); |
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region Select
|
|
|
@ -246,6 +272,14 @@ namespace SqlSugar |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6, T7> Where(Expression<Func<T, T2, T3, T4, T5, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6, T7> Where(Expression<Func<T, T2, T3, T4, T5, T6, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6, T7> Where(Expression<Func<T, T2, T3, T4, T5, T6, T7, bool>> expression); |
|
|
|
|
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6, T7> WhereIf(bool isWhere, Expression<Func<T, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6, T7> WhereIf(bool isWhere, Expression<Func<T, T2, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6, T7> WhereIf(bool isWhere, Expression<Func<T, T2, T3, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6, T7> WhereIf(bool isWhere, Expression<Func<T, T2, T3, T4, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6, T7> WhereIf(bool isWhere, Expression<Func<T, T2, T3, T4, T5, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6, T7> WhereIf(bool isWhere, Expression<Func<T, T2, T3, T4, T5, T6, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6, T7> WhereIf(bool isWhere, Expression<Func<T, T2, T3, T4, T5, T6, T7, bool>> expression); |
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region Select
|
|
|
@ -288,6 +322,15 @@ namespace SqlSugar |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8> Where(Expression<Func<T, T2, T3, T4, T5, T6, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8> Where(Expression<Func<T, T2, T3, T4, T5, T6, T7, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8> Where(Expression<Func<T, T2, T3, T4, T5, T6, T7, T8, bool>> expression); |
|
|
|
|
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8> WhereIf(bool isWhere, Expression<Func<T, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8> WhereIf(bool isWhere, Expression<Func<T, T2, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8> WhereIf(bool isWhere, Expression<Func<T, T2, T3, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8> WhereIf(bool isWhere, Expression<Func<T, T2, T3, T4, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8> WhereIf(bool isWhere, Expression<Func<T, T2, T3, T4, T5, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8> WhereIf(bool isWhere, Expression<Func<T, T2, T3, T4, T5, T6, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8> WhereIf(bool isWhere, Expression<Func<T, T2, T3, T4, T5, T6, T7, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8> WhereIf(bool isWhere, Expression<Func<T, T2, T3, T4, T5, T6, T7, T8, bool>> expression); |
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region Select
|
|
|
|