Reputation: 2539
How can I put an angle bracket ("<") in my xml attribute?
I'm trying to store an SQL query, but this seems to be illegal.
<add key="query" value="SELECT DISTINCT index FROM table WHERE langCode <> 'FR'"/>
Upvotes: 41
Views: 25623
Reputation: 53024
Use <
and >
instead of <
and >
:
<add key="query" value="SELECT DISTINCT index FROM table WHERE langCode <> 'FR'"/>
Upvotes: 67