@@ -3271,7 +3271,7 @@ public Query<T> WhereLastYear<U>(string tableAlias, Expression<Func<U, object>>
3271
3271
/// <param name="column">Logical name of the column</param>
3272
3272
/// <param name="value">The value</param>
3273
3273
/// <returns>The <see cref="Query{T}"/></returns>
3274
- public Query < T > WhereLessEqual ( Expression < Func < T , object > > column , int value )
3274
+ public Query < T > WhereLessEqual ( Expression < Func < T , object > > column , object value )
3275
3275
{
3276
3276
QueryExpression . Criteria . AddCondition ( AnonymousTypeHelper . GetAttributeName ( column ) , ConditionOperator . LessEqual , value ) ;
3277
3277
@@ -3283,7 +3283,7 @@ public Query<T> WhereLessEqual(Expression<Func<T, object>> column, int value)
3283
3283
/// <param name="column">Logical name of the column</param>
3284
3284
/// <param name="value">The value</param>
3285
3285
/// <returns>The <see cref="Query{T}"/></returns>
3286
- public Query < T > WhereLessEqual < U > ( string tableAlias , Expression < Func < U , object > > column , int value ) where U : Entity
3286
+ public Query < T > WhereLessEqual < U > ( string tableAlias , Expression < Func < U , object > > column , object value ) where U : Entity
3287
3287
{
3288
3288
QueryExpression . Criteria . AddCondition ( tableAlias , AnonymousTypeHelper . GetAttributeName ( column ) , ConditionOperator . LessEqual , value ) ;
3289
3289
@@ -3294,7 +3294,7 @@ public Query<T> WhereLessEqual<U>(string tableAlias, Expression<Func<U, object>>
3294
3294
/// <param name="column">Logical name of the column</param>
3295
3295
/// <param name="value">The value</param>
3296
3296
/// <returns>The <see cref="Query{T}"/></returns>
3297
- public Query < T > WhereLessThan ( Expression < Func < T , object > > column , int value )
3297
+ public Query < T > WhereLessThan ( Expression < Func < T , object > > column , object value )
3298
3298
{
3299
3299
QueryExpression . Criteria . AddCondition ( AnonymousTypeHelper . GetAttributeName ( column ) , ConditionOperator . LessThan , value ) ;
3300
3300
@@ -3306,7 +3306,7 @@ public Query<T> WhereLessThan(Expression<Func<T, object>> column, int value)
3306
3306
/// <param name="column">Logical name of the column</param>
3307
3307
/// <param name="value">The value</param>
3308
3308
/// <returns>The <see cref="Query{T}"/></returns>
3309
- public Query < T > WhereLessThan < U > ( string tableAlias , Expression < Func < U , object > > column , int value ) where U : Entity
3309
+ public Query < T > WhereLessThan < U > ( string tableAlias , Expression < Func < U , object > > column , object value ) where U : Entity
3310
3310
{
3311
3311
QueryExpression . Criteria . AddCondition ( tableAlias , AnonymousTypeHelper . GetAttributeName ( column ) , ConditionOperator . LessThan , value ) ;
3312
3312
@@ -4590,4 +4590,4 @@ public T GetById(Guid id, IOrganizationService service, bool isActivityEntity =
4590
4590
4591
4591
#endregion Service calls
4592
4592
}
4593
- }
4593
+ }
0 commit comments