Hello,
im using kendo-react with .net core integration.
When i want to filter a Grid the query generated by the method: `toDataSourceRequest()`use the sql function LOWER to compare a string column.
With this behaviour its impossible to match only the exact rows. I want to disable this function and use the `=` operator in SQL.
I think if i use: `ignoreCase: false` in the frontend and then serialize with: `toDataSourceRequestString` from the `@progress/kendo-data-query` package, the `DataSourceRequest` will contain the ignoreCase prop and the toDataSourceRequest will do the job.
But the ignoreCase:false prop is not added to the query param,.
Any suggestion? Its not possible to use ignoreCase with the backend integration and only works in frontend?
- https://codesandbox.io/s/vigorous-bush-s2fgnc => ignore case working when the filter is in frontend.
- https://codesandbox.io/s/nervous-platform-9nr2q4 => with backend not working
Thanks!
