11.5.1 - 2026-09-27
Improvements
- ODataQuery translates
ToString()in filters. A number, Guid or bool (or its nullable) is sent ascast(Member,Edm.String), so a search such asp.Year.ToString().Contains(search)works; an enum'sToString()compared with a value (Contains,StartsWith,EndsWith,==,Equals, with or withoutToLower/ToUpper) becomes a comparison with the members whose names match, for exampleStatus eq 'Open' or Status eq 'Pending'. Dates and[Flags]enums still throwNotSupportedExceptionwith a message naming what to use instead.