【发布时间】:2011-09-18 09:45:02
【问题描述】:
如何解析以下 FetchXML 请求的结果?
string fetch_checkEntity = @"
<fetch mapping='logical'>
<entity name='" + entityname + @"'>
<attribute name='" + columnname + @"' />
<attribute name='" + logicalnameid + @"' />
<order attribute='" + columnname + @"' />
<filter>
<condition attribute='statecode' operator='eq' value='0' />
<condition attribute='statuscode' operator='eq' value='1' />
</filter>
</entity>
</fetch>";
string result_checkEntity = crmService.Fetch(fetch_checkEntity);
【问题讨论】:
-
我的回答对您有任何帮助吗?是不是模棱两可?
标签: dynamics-crm-4 crm fetchxml