Method GetDateNotEqualsExpression
- Namespace
- Innova.Data.StructuredSearch.Operators
- Assembly
- Innova.Data.dll
GetDateNotEqualsExpression<T>(ParameterExpression, string, object)
Gets the expression that represents the inequality comparison of a date property with a filter value.
public static Expression<Func<T, bool>> GetDateNotEqualsExpression<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>>
The expression representing the inequality comparison.
Type Parameters
T
The type of the entity.
GetDateNotEqualsExpression<T>(ParameterExpression, Expression, object)
Gets the expression that represents the inequality comparison of a date property with a filter value.
public static Expression<Func<T, bool>> GetDateNotEqualsExpression<T>(ParameterExpression parameter, Expression propertyExpression, object filterValue)
Parameters
parameter
ParameterExpressionThe parameter expression.
propertyExpression
ExpressionThe expression representing the date property.
filterValue
objectThe filter value to compare with the date property.
Returns
- Expression<Func<T, bool>>
The expression representing the inequality comparison.
Type Parameters
T
The type of the entity.