|
|
@ -26,7 +26,7 @@ namespace SqlSugar |
|
|
|
|
|
|
|
ISugarQueryable<T> Where(Expression<Func<T, bool>> expression); |
|
|
|
ISugarQueryable<T> Where(string whereString, object whereObj = null); |
|
|
|
ISugarQueryable<T> Where(List<ConditionalModel> conditionalModels); |
|
|
|
ISugarQueryable<T> Where(List<IConditionalModel> conditionalModels); |
|
|
|
|
|
|
|
ISugarQueryable<T> Having(Expression<Func<T, bool>> expression); |
|
|
|
ISugarQueryable<T> Having(string whereString, object whereObj = null); |
|
|
@ -132,7 +132,7 @@ namespace SqlSugar |
|
|
|
#region Where
|
|
|
|
new ISugarQueryable<T, T2> Where(Expression<Func<T, bool>> expression); |
|
|
|
ISugarQueryable<T, T2> Where(Expression<Func<T, T2, bool>> expression); |
|
|
|
new ISugarQueryable<T, T2> Where(List<ConditionalModel> conditionalModels); |
|
|
|
new ISugarQueryable<T, T2> Where(List<IConditionalModel> conditionalModels); |
|
|
|
|
|
|
|
new ISugarQueryable<T, T2> WhereIF(bool isWhere, Expression<Func<T, bool>> expression); |
|
|
|
ISugarQueryable<T, T2> WhereIF(bool isWhere, Expression<Func<T, T2, bool>> expression); |
|
|
@ -194,7 +194,7 @@ 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); |
|
|
|
new ISugarQueryable<T, T2, T3> Where(List<ConditionalModel> conditionalModels); |
|
|
|
new ISugarQueryable<T, T2, T3> Where(List<IConditionalModel> conditionalModels); |
|
|
|
|
|
|
|
new 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); |
|
|
@ -262,7 +262,7 @@ 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> Where(List<ConditionalModel> conditionalModels); |
|
|
|
new ISugarQueryable<T, T2, T3, T4> Where(List<IConditionalModel> conditionalModels); |
|
|
|
|
|
|
|
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); |
|
|
@ -337,7 +337,7 @@ 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); |
|
|
|
new ISugarQueryable<T, T2, T3, T4, T5> Where(List<ConditionalModel> conditionalModels); |
|
|
|
new ISugarQueryable<T, T2, T3, T4, T5> Where(List<IConditionalModel> conditionalModels); |
|
|
|
|
|
|
|
|
|
|
|
new ISugarQueryable<T, T2, T3, T4, T5> WhereIF(bool isWhere, Expression<Func<T, bool>> expression); |
|
|
@ -414,7 +414,7 @@ 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); |
|
|
|
new ISugarQueryable<T, T2, T3, T4, T5, T6> Where(List<ConditionalModel> conditionalModels); |
|
|
|
new ISugarQueryable<T, T2, T3, T4, T5, T6> Where(List<IConditionalModel> conditionalModels); |
|
|
|
|
|
|
|
new 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); |
|
|
@ -489,7 +489,7 @@ 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); |
|
|
|
new ISugarQueryable<T, T2, T3, T4, T5, T6, T7> Where(List<ConditionalModel> conditionalModels); |
|
|
|
new ISugarQueryable<T, T2, T3, T4, T5, T6, T7> Where(List<IConditionalModel> conditionalModels); |
|
|
|
|
|
|
|
new 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); |
|
|
@ -569,7 +569,7 @@ 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); |
|
|
|
new ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8> Where(List<ConditionalModel> conditionalModels); |
|
|
|
new ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8> Where(List<IConditionalModel> conditionalModels); |
|
|
|
|
|
|
|
new 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); |
|
|
@ -656,7 +656,7 @@ namespace SqlSugar |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9> Where(Expression<Func<T, T2, T3, T4, T5, T6, T7, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9> Where(Expression<Func<T, T2, T3, T4, T5, T6, T7, T8, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9> Where(Expression<Func<T, T2, T3, T4, T5, T6, T7, T8, T9, bool>> expression); |
|
|
|
new ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9> Where(List<ConditionalModel> conditionalModels); |
|
|
|
new ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9> Where(List<IConditionalModel> conditionalModels); |
|
|
|
|
|
|
|
new ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9> WhereIF(bool isWhere, Expression<Func<T, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9> WhereIF(bool isWhere, Expression<Func<T, T2, bool>> expression); |
|
|
@ -746,7 +746,7 @@ namespace SqlSugar |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10> Where(Expression<Func<T, T2, T3, T4, T5, T6, T7, T8, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10> Where(Expression<Func<T, T2, T3, T4, T5, T6, T7, T8, T9, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10> Where(Expression<Func<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, bool>> expression); |
|
|
|
new ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10> Where(List<ConditionalModel> conditionalModels); |
|
|
|
new ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10> Where(List<IConditionalModel> conditionalModels); |
|
|
|
|
|
|
|
new ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10> WhereIF(bool isWhere, Expression<Func<T, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10> WhereIF(bool isWhere, Expression<Func<T, T2, bool>> expression); |
|
|
@ -841,7 +841,7 @@ namespace SqlSugar |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> Where(Expression<Func<T, T2, T3, T4, T5, T6, T7, T8, T9, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> Where(Expression<Func<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> Where(Expression<Func<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, bool>> expression); |
|
|
|
new ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> Where(List<ConditionalModel> conditionalModels); |
|
|
|
new ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> Where(List<IConditionalModel> conditionalModels); |
|
|
|
|
|
|
|
new ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> WhereIF(bool isWhere, Expression<Func<T, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> WhereIF(bool isWhere, Expression<Func<T, T2, bool>> expression); |
|
|
@ -941,7 +941,7 @@ namespace SqlSugar |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> Where(Expression<Func<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> Where(Expression<Func<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> Where(Expression<Func<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, bool>> expression); |
|
|
|
new ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> Where(List<ConditionalModel> conditionalModels); |
|
|
|
new ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> Where(List<IConditionalModel> conditionalModels); |
|
|
|
|
|
|
|
new ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> WhereIF(bool isWhere, Expression<Func<T, bool>> expression); |
|
|
|
ISugarQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> WhereIF(bool isWhere, Expression<Func<T, T2, bool>> expression); |
|
|
|