私は、フェッチxmlを使用して、mscrm2011エンティティから値を取得しています。INVALIDXMLエラーがスローされます。サンプル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-私がそれらを扱うことができるように他の違法な文字は何ですか?
よろしく。