On 15 May 2013 10:57, John Best wrote:
Hi,
<Query>... Year <= '2013']</Query>
So you don't evaluate the content of the element Query, but you rather store the lexical representation of an XQuery query as its content. I guess this is not a bug and really what you want.
Because this is XML content as any XML content, you need to escape the '<' characters, like that:
<Query>... Year <= '2013']</Query>
Regards,