Renze de Vries

Results 3 comments of Renze de Vries

The main maintenance of the project happens on the main odata project, the reported issue is more a framework specific thing. I suggest to move the issue to the main...

If you look at the current example we have both implemented a $top and $filter operation, for sure not all of them but at least a sort of getting started...

It is possible to handle GreaterThan operation: ``` if(criteria instanceof ComparisonCriteria) { ComparisonCriteria comparisonCriteria = (ComparisonCriteria) criteria; ComparisonOperator operator = comparisonCriteria.getOperator(); if(operator instanceof GtOperator$) { LOG.info("Greater then operator"); } ```...