Table of Contents

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 ParameterExpression

The parameter expression.

propertyName string

The name of the property.

filterValue object

The 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 ParameterExpression

The parameter expression.

propertyExpression Expression

The expression representing the date property.

filterValue object

The 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.