2

我在 Windows 服务中使用FetchExpression反对RetrieveMultiple操作CrmOrganizationServiceContext来从队列中获取和处理项目。

第一次运行时,它将获取要正确处理的项目。在使用相同CrmOrganizationServiceContext实例的后续调用中,它始终检索零个实体而不会引发错误。我添加了新实体并重新激活了应该使用 FetchXml 获取的现有实体,但它们不会被检索到。

一旦我重新启动我的服务,它就会创建一个新的实例CrmOrganizationServiceContext并获取新项目。

我在这里做错了什么?

   public CrmConnector(string connectionString)
   {
        Context = new CrmOrganizationServiceContext(CrmConnection.Parse(connectionString));
   }

   public void FetchStuff()
   {
        string fetchXml = "...";
        FetchExpression fetchExpression = new FetchExpression(fetchXml);
        EntityCollection entityCollection = Context.RetrieveMultiple(fetchExpression);
        // entityCollection.Entities is always empty following first run
    }

    private CrmOrganizationServiceContext Context { get; set; }

根据请求获取 Xml,唯一的自定义是限制返回项目数量的 count 属性(因为这是一个队列处理器)

  <fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false" count="10">
    <entity name="xxx1">
      <attribute name="xxx_name" />
      <attribute name="createdon" />
      <attribute name="xxx_1" />
      <attribute name="xxx_2" />
      <attribute name="xxx_3" />
      <attribute name="xxx_4" />
      <attribute name="statecode" />
      <order attribute="createdon" descending="false" />
      <filter type="and">
        <condition attribute="xxx_exported" value="0" operator="eq"/>
      </filter>
    </entity>
  </fetch>
4

1 回答 1

3

它是在CrmOrganizationServiceContext做缓存 - 我发现以下工作很有效,我的 RetrieveMultiple 的结果不再被缓存:)

Context = new CrmOrganizationServiceContext(CrmConnection.Parse(connectionString));
Context.TryAccessCache(cache => cache.Mode = OrganizationServiceCacheMode.Disabled);
于 2011-12-12T10:43:02.093 回答