Solved
How use set wildcard characters [? % *] as target character in ThingWorx Query with "Like" filter?
There is a DataTable as below. How to get rows containing "%" ?
| ID | Value |
|---|---|
|
1
|
%1
|
|
2
|
2?
|
|
3
|
*
|
|
4
|
+1
|
In above case, should be the 1st row.
Because % is a wildcard in Thing Query, how should I escape it?
Same question for ? and *.

