Method GetGreaterThanOrEqualExpression
- Namespace
- Innova.Data.StructuredSearch.Operators
- Assembly
- Innova.Data.dll
GetGreaterThanOrEqualExpression<T>(ParameterExpression, string, object)
Gets an expression that represents the condition where the property value is greater than or equal to the specified filter value.
public static Expression<Func<T, bool>> GetGreaterThanOrEqualExpression<T>(ParameterExpression parameter, string propertyName, object filterValue)
Parameters
parameter
ParameterExpressionThe parameter expression.
propertyName
stringThe name of the property.
filterValue
objectThe filter value.
Returns
- Expression<Func<T, bool>>
An expression representing the condition.
Type Parameters
T
The type of the entity.
GetGreaterThanOrEqualExpression<T>(ParameterExpression, Expression, object)
Gets an expression that represents the condition where the property value is greater than or equal to the specified filter value.
public static Expression<Func<T, bool>> GetGreaterThanOrEqualExpression<T>(ParameterExpression parameter, Expression propertyExpression, object filterValue)
Parameters
parameter
ParameterExpressionThe parameter expression.
propertyExpression
ExpressionThe expression representing the property.
filterValue
objectThe filter value.
Returns
- Expression<Func<T, bool>>
An expression representing the condition.
Type Parameters
T
The type of the entity.