3

因此,如果 CRM 中没有为它保存的数据,似乎使用 FetchXML 不会返回一列。

例如:

<fetch mapping="logical" count="50">
<entity name="contact">
    <attribute name="contactid" />
    <attribute name="emailaddress1" />
    <attribute name="firstname" />
    <attribute name="jobtitle" />
    <attribute name="lastname" />
    <attribute name="mobilephone" />
    <attribute name="parentcustomerid" />
    <attribute name="telephone1" />
    <filter>
        <condition attribute="parentcustomerid" operator="eq" value="94bf630f-b364-de11-8f1d-001cc02e75b4" />
    </filter>
</entity>

但是返回的 XML 如下

<resultset morerecords="0" paging-cookie="&lt;cookie page=&quot;1&quot;&gt;&lt;contactid last=&quot;{86805DB5-E06B-DE11-81EE-001CC02E75B4}&quot; first=&quot;{7CBC9B9A-E06B-DE11-81EE-001CC02E75B4}&quot; /&gt;&lt;/cookie&gt;">
<result>
    <contactid>{7CBC9B9A-E06B-DE11-81EE-001CC02E75B4}</contactid>
    <emailaddress1>tom@xxx.org.uk</emailaddress1>
    <firstname>tommy</firstname>
    <jobtitle>Dude</jobtitle>
    <lastname>Smith</lastname>
    <parentcustomerid yomi="" name="Tom's bike shoppe" dsc="0" type="1">{94BF630F-B364-DE11-8F1D-001CC02E75B4}</parentcustomerid>
</result>
<result>
    <contactid>{86805DB5-E06B-DE11-81EE-001CC02E75B4}</contactid>
    <emailaddress1>jason@xxx.org.uk</emailaddress1>
    <firstname>jason</firstname>
    <lastname>Finch</lastname>
    <parentcustomerid yomi="" name="Tom's bike shoppe" dsc="0" type="1">{94BF630F-B364-DE11-8F1D-001CC02E75B4}</parentcustomerid>
</result>

例如,第二条记录没有职称,并且两条记录都没有手机号码。这使得将这些绑定到数据控件变得很棘手。

所以基本上我的问题是,是否可以强制 CRM 以空白或空值返回这些字段?

4

2 回答 2

2

简而言之,没有。

我不知道您的绑定情况的具体情况,但是您是否可以只使用一个自定义模型类来填充您的获取结果,然后绑定到该类而不是绑定到 XML?

于 2009-07-27T16:34:49.870 回答
1

另一种选择是不使用 API 的 FetchXML 部分并使用RetrieveMultiple获取强类型的 BusinessEntity 记录。

于 2009-07-27T20:08:25.260 回答