7

我一直避免使用 fetchxml,因为我不确定在调用 crmService.Fetch(fetchXml) 后处理结果数据的最佳方式。在几种情况下,我使用了带有 LINQ 的 XDocument 从该数据结构中检索数据,例如:

XDocument resultset = XDocument.Parse(_service.Fetch(fetchXml));
if (resultset.Root == null || !resultset.Root.Elements("result").Any())
{
    return;
}
foreach (var displayItem in resultset.Root.Elements("result").Select(item => item.Element(displayAttributeName)).Distinct())
{
    if (displayItem!= null && displayItem.Value != null)
    {
        dropDownList.Items.Add(displayItem.Value);    
    }
}

处理 fetchxml 结果数据的最佳方法是什么,以便可以轻松使用。将这些记录传递到 ASP.NET 数据网格等应用程序将非常有用。

4

5 回答 5

6

我喜欢 FetchXML 的灵活性,因此我开发了以下函数,该函数返回一个数据表,用于绑定到网格和中继器等。

        /// <summary>
    /// Takes a CRM FetchXML query and returns a DataTable
    /// </summary>
    /// <param name="fetchXml">The FetchXML query</param>
    /// <param name="requiredFields">A array of columns you'd expect returned. This is required as if there is no data for a field/column CRM will not return it which could impact databinding</param>
    /// <returns>A datatable containing the results of the FetchXML</returns>
    public static DataTable FetchXML2DataTable(string fetchXml, string[] requiredFields)
    {
        CrmService tomService = new CrmService();
        tomService = CrmWebService;

        string result = tomService.Fetch(fetchXml);
        DataSet ds = new DataSet();

        System.IO.StringReader reader = new System.IO.StringReader(result);
        ds.ReadXml(reader);

        DataTable dt = ds.Tables[1];

        //check all required columns are present otherwise add them to make life easier for databinding at the top level
        //caused by CRM not returning fields if they contain no data
        foreach (string field in requiredFields)
        {   //Check for column names and nested tables
            if ((dt.Columns.IndexOf(field) < 0) && (dt.DataSet.Tables.IndexOf(field) <0))
            {                    
                //Add column to datatable even though it is empty for reason stated above
                dt.Columns.Add(new DataColumn(field));
            }
        }            

        return dt;
    }

requiredFields 字符串数组在那里,因为如果您的结果集不包含该列的数据,则不会返回列,但是由于绑定到数据网格等的确切原因,我可能希望该列到位。

CrmService 是一个初始化 web 服务的单例类。

希望这对你有用。

于 2009-08-11T11:35:23.753 回答
1

出于这个原因,我通常会避免使用 FetchXML。您可以使用 RetrieveMultiple 来获取强类型的 BusinessEntity 对象并基本上做同样的事情。

但是,如果您想使用 FetchXML,此示例应该涵盖您:

http://msdn.microsoft.com/en-us/library/ms914457.aspx

于 2009-07-31T01:35:34.227 回答
1

使用 QueryExpression,您不能查询多对多实体,也不能一次从多个实体中检索属性,因此您必须使用 FetchXML。

不幸的是,随着 CRM SDK 4.0.12 的发布,LinqToCRM 的 codeplex 项目已经过时了(1 年没有新版本,但它似乎是一个很好的实现,比微软的版本更好),其中包含动态 crm 的 linq 提供程序,但我阅读一些关于这个新版本的文章,它不是很好,似乎是一个“糟糕的实现”,有很多限制(强制缓存等)。

我看到很多人使用 LinqToXML 和 DataSet 来引导 FetchXML 结果,但我不能说处理它的最佳方法是什么。你怎么看待这件事?

克里斯托夫·特雷维萨尼·查维。

于 2010-08-31T14:26:47.143 回答
0

If you want to use a fetchxml AND get a returnset of the BusinessEntityType, you can use the FetchXmlToQueryExpression method to get a query expression from the fetchxml and then apply the query expression in a RetrieveMultiple method as in

FetchXmlToQueryExpressionResponse qe = (FetchXmlToQueryExpressionResponse) service.Execute(fetch);

Note that the reverse method QueryExpressiontoFetchXml exists as well

于 2009-09-09T14:26:09.830 回答
0

您也可以选择 LinqtoCRM,它会为您处理 XML 解析:http: //codeplex.com/linqtocrm

于 2009-07-31T10:46:11.567 回答