我正在使用 fetch xml 从 ms crm 2011 实体中检索值。它抛出INVALID XML 错误,示例 xml 如下所示:
<fetch version='1.0' output-format='xml-platform' mapping='logical' distinct='true'>
<entity name='xyz_registrationanswer'>
<attribute name='xyz_registrationid' />
<attribute name='xyz_name' />
<filter type='and'>
<condition attribute='xyz_name' operator='in' >
<value>Do you want to subscribe to 1 & 2?</value>
</condition>
</filter> <order attribute='xyz_name' descending='false' />
</entity>
</fetch>
通过调查问题,我发现了 1 到 2 之间的&符号的原因:
<value>Do you want to subscribe to 1 & 2?</value>
1-有人可以帮我解决这个问题吗?
2-还有哪些其他非法字符,我可以处理它们?
问候。