Method GetDateGreaterThanOrEqualExpression
- Namespace
- Innova.Data.StructuredSearch.Operators
- Assembly
- Innova.Data.dll
GetDateGreaterThanOrEqualExpression<T>(ParameterExpression, string, object)
Gets the expression that represents a greater than or equal comparison for a date property.
public static Expression<Func<T, bool>> GetDateGreaterThanOrEqualExpression<T>(ParameterExpression parameter, string propertyName, object filterValue)
Parameters
parameterParameterExpressionThe parameter expression.
propertyNamestringThe name of the property.
filterValueobjectThe filter value.
Returns
- Expression<Func<T, bool>>
The expression representing the greater than or equal comparison.
Type Parameters
TThe type of the entity.
GetDateGreaterThanOrEqualExpression<T>(ParameterExpression, Expression, object)
Gets the expression that represents a greater than or equal comparison for a date property.
public static Expression<Func<T, bool>> GetDateGreaterThanOrEqualExpression<T>(ParameterExpression parameter, Expression propertyExpression, object filterValue)
Parameters
parameterParameterExpressionThe parameter expression.
propertyExpressionExpressionThe expression representing the property.
filterValueobjectThe filter value.
Returns
- Expression<Func<T, bool>>
The expression representing the greater than or equal comparison.
Type Parameters
TThe type of the entity.