Skip to content

Commit

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

bool HasComparisonOperator(Type type) {
// Starting with target net7 type.GetMethod("op_GreaterThan", ...) returns not null for Guid
if(type == typeof(Guid))
return false;

Expand Down

0 comments on commit 5288825

Please sign in to comment.