|
Query format strings are only partially escaped before being processed, so it is impossible to have a query string that looks for curly braces "{" and "}".
When the query is being escaped, iTest does not know whether the user wants '{0}' to represent an argument or a literal string. Currently, they are always being treated as arguments. If users try to escape the curly braces themselves, the quotes they use to escape will be further escaped, and will result in the wrong string.
|