Does the GridReadEventArgs support some sort of in functionality?
I am trying to programmatically use several multiselect lists to create the initial query for loading data into a grid via an OData datasource.
The "query" created is close but the fieldname is surrounded by single quotes so the query does not work
This is what is created
filter=(contains('abc,DEF','MyColName'))
but this is the proper syntax
filter=(contains('abc,DEF', MyColName))
Is there anyway short of manipulating the resulting query string to remove the single quotes from around 'MyColName'?
Or IsContainedIn now supported in the latest version of the Blazor UI library?