Table of Contents

Method GetNotEndsWithExpression

Namespace
Innova.Data.StructuredSearch.Operators
Assembly
Innova.Data.dll

GetNotEndsWithExpression<T>(ParameterExpression, string, object)

Gets an expression that represents a condition where the specified property does not end with the specified filter value.

public static Expression<Func<T, bool>> GetNotEndsWithExpression<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>>

An expression representing the condition.

Type Parameters

T

The type of the entity.

GetNotEndsWithExpression<T>(ParameterExpression, Expression, object)

Gets an expression that represents a condition where the specified property does not end with the specified filter value.

public static Expression<Func<T, bool>> GetNotEndsWithExpression<T>(ParameterExpression parameter, Expression propertyExpression, object filterValue)

Parameters

parameter ParameterExpression

The parameter expression.

propertyExpression Expression

The expression representing the property.

filterValue object

The filter value.

Returns

Expression<Func<T, bool>>

An expression representing the condition.

Type Parameters

T

The type of the entity.