Background
The OData URI parser parses the $filter query to a FilterClause.
The FilterBinder translates an OData $filter parse tree represented by a FilterClause to an Expression. The Expression can be applied to an IQueryable and passed to an ORM (e.g Entity Framework Core) for processing.
The FilterBinder contains the default ...