Skip to content

Commit

Permalink
Fixed not equal expression for comparables.
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelstaib committed Feb 23, 2020
1 parent 48cf16e commit b6ae3da
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,8 @@ protected override bool TryCreateExpression(
return true;

case FilterOperationKind.NotEquals:
expression = FilterExpressionBuilder.Not(
FilterExpressionBuilder.Equals(
property, parseValue())
);
expression = FilterExpressionBuilder.NotEquals(
property, parseValue());
return true;

default:
Expand Down

0 comments on commit b6ae3da

Please sign in to comment.