Skip to content

Commit

Permalink
fix guid comparison operations for all targets
Browse files Browse the repository at this point in the history
  • Loading branch information
mpreyskurantov committed Sep 6, 2024
1 parent c9a4bb9 commit f233a20
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions net/DevExtreme.AspNet.Data/FilterExpressionCompiler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -175,10 +175,9 @@ bool HasEqualityOperator(Type type) {
}

bool HasComparisonOperator(Type type) {
#if !NET4
if(type == typeof(Guid))
return false;
#endif

if(type.IsEnum)
return false;

Expand Down

0 comments on commit f233a20

Please sign in to comment.