Method GetNotStartsWithExpression
- Namespace
- Innova.Data.StructuredSearch.Operators
- Assembly
- Innova.Data.dll
GetNotStartsWithExpression<T>(ParameterExpression, string, object)
Gets an expression that checks if the property value does not start with the specified filter value.
public static Expression<Func<T, bool>> GetNotStartsWithExpression<T>(ParameterExpression parameter, string propertyName, object filterValue)
Parameters
parameterParameterExpressionThe parameter expression.
propertyNamestringThe name of the property.
filterValueobjectThe filter value to check against.
Returns
- Expression<Func<T, bool>>
An expression that checks if the property value does not start with the specified filter value.
Type Parameters
TThe type of the entity.
GetNotStartsWithExpression<T>(ParameterExpression, Expression, object)
Gets an expression that checks if the property value does not start with the specified filter value.
public static Expression<Func<T, bool>> GetNotStartsWithExpression<T>(ParameterExpression parameter, Expression propertyExpression, object filterValue)
Parameters
parameterParameterExpressionThe parameter expression.
propertyExpressionExpressionThe expression representing the property.
filterValueobjectThe filter value to check against.
Returns
- Expression<Func<T, bool>>
An expression that checks if the property value does not start with the specified filter value.
Type Parameters
TThe type of the entity.