You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But there is another problem about generated filter.where part.
I use ms sql server and createFilter function generates LCASE function in filter.where query and ms sql server doesn't have LCASE function.
Here is an example about above situation;
'$filter': 'contains(tolower(projectName),'as')',
and
SELECT * FROM Projects WHERE LCASE([projectName]) like @p0
(Error: 'LCASE' is not a recognized built-in function name)
Shouldn't this result in something like '[Id] = 42'?
Or am I missing something here?
The text was updated successfully, but these errors were encountered: