diff --git a/net/DevExtreme.AspNet.Data/FilterExpressionCompiler.cs b/net/DevExtreme.AspNet.Data/FilterExpressionCompiler.cs index e65f56c5..9133853e 100644 --- a/net/DevExtreme.AspNet.Data/FilterExpressionCompiler.cs +++ b/net/DevExtreme.AspNet.Data/FilterExpressionCompiler.cs @@ -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;