Is there a setting/configuration in .Net Core 2.2 where we can make oData queries to the backend like this and it would ignore the case? In the example below I would like all Cars with Brand FORD and Ford to appear in the search results
https://localhost/api/cars?$filter=contains(Brand,'FoRd')
I'm aware you can use toLower in the URL but I'm looking at a setting in the backend
Microsoft.AspNetCore.OData
verion7.2.2
, it works as case insensitive by default . Not sure what is the cause . – Nan Yu