Hello everyone,
I'm using a Query Expression to filter some data, and I can't figure out how to combine the LogicalOperator.AND & LogicalOperator.OR together.
To explain this better I'll give you the following example. I get a string with keywords like this "MySQL Javascript". I split the string by spaces, and I add a condition for every word (Filter.FilterOperator = LogicalOperator.AND) - this way I will get the results that contain MySQL and Javascript in the same result.
I'm trying to do the same for the words that are lower case. That way I'll find the words that are not specifically written with the upper cases. I would've searched only in lower case, but my data is case sensitive.
So basically I need to know how to get all the results that contain the upper or lower case from the given words.
Anyone?
*This post is locked for comments
I have the same question (0)