CRM 2013 c#插件-获取XML查询

本文关键字:获取 XML 查询 插件 2013 CRM | 更新日期: 2023-09-27 18:11:10

我的实体页面上有一个网格订单,用户可以将产品添加到实体网格

对于我的插件,我需要知道哪些产品已插入到网格中,以便我可以生成CSV文件

我已经尝试使用FetchXML查询来检索数据,如下所示;

string fetchxml = @"
<fetch mapping= 'logical'>
   <entity name ='product'>
      <attribute name = 'name'/>
   </entity>
 </fetch> ";
EntityCollection result = service.RetrieveMultiple(new FetchExpression(fetchxml));foreach(var c in result.Entities){
 if (result != null && result.Entities.Count > 0)
   {
     List<string> _product = new List<string>();
     foreach (Entity _entity in result.Entities)
       {
         _product.Add(_entity.Attributes["name"].ToString());
       }
string CSVFile = string.Join(",", _product.ToArray());string AddressPath = "FM-OR" + "_";
string AddressSavePath = @"''fm'CRMdata'maesteg'" + AddressPath + ".csv";
System.IO.File.WriteAllText(AddressSavePath, CSVFile.ToString());
}
}

代码确实产生我需要的所需CSV文件,但是它选择了实体产品中的每条记录,而不是网格中所需的记录。对我如何解决这个问题有什么建议吗?

谢谢,肖恩

CRM 2013 c#插件-获取XML查询

您需要在获取查询中使用Link-Entity和Filter。检查下面的例子:

示例:在FetchXML 中使用聚合

Fetch Xml应该是这样的:

Guid orderId = (Guid)((Entity)context.InputParameters["Target"]).Id;
<?xml version="1.0"?>
    <fetch distinct="true" mapping="logical" output-format="xml-platform" version="1.0">
    <entity name="product">
        <attribute name="name"/>
        <attribute name="productnumber"/>
        <attribute name="subjectid"/>
        <attribute name="statecode"/>
        <attribute name="productid"/>
        <order descending="false" attribute="productnumber"/>
        <link-entity name="salesorderdetail" alias="aa" to="productid" from="productid">
            <link-entity name="salesorder" alias="ab" to="salesorderid" from="salesorderid">
                <filter type="and">
                    <condition attribute="salesorderid" operator="eq" value=orderId />
                </filter>
            </link-entity>
       </link-entity>
    </entity>
</fetch>

"To some value"是触发插件的实体的id查看此链接:http://msdn.microsoft.com/en-us/library/gg309673.aspx

你的代码应该是这样的:
@"<fetch version='1.0' output-format='xml-platform' mapping='logical' distinct='true'>
 <entity name='product'>
     <attribute name = 'name'/>
     <order attribute='name' descending='false' />
     <filter type='and'>
         <condition attribute='productid' operator='eq' value=" + context.InputParameters["Target"].id + @" />
     </filter>
     <link-entity name='order' from='projectid' to='project' alias='Order'>
       ........
     </link-entity>
 </entity>
</fetch>"

请记住,我所做的字符串连接可能是错误的,但我必须这样做,以突出显示语法:)

相关文章: