从CRM 2011中的新活动中获取数据

时间:2013-11-03 12:44:16

标签: c# plugins dynamics-crm-2011 crm

我为动态活动实体创建了一个动态CRM 2011的新插件。

这个新活动有像电子邮件和其他一些活动一样的“to”字段。

插件正在处理活动的创建和更新步骤。

我的问题是,当我想获得"to"字段值时,下面的代码行返回false值,我不知道我做了什么。实际上我可以获取其他自定义字段,只有"to"字段不起作用。

if (entity3.Attributes.Contains("to"))

这是完整的代码:

public void Execute(IServiceProvider serviceProvider)
{
    if (serviceProvider == null)
    {
        throw new ArgumentNullException("serviceProvider");
    }

    IPluginExecutionContext context = (IPluginExecutionContext)serviceProvider.GetService(typeof(IPluginExecutionContext));
    if (context.InputParameters.Contains("Target") && (context.InputParameters["Target"] is Entity))
    {
            Entity entity2 = (Entity)context.InputParameters["Target"];
            if (entity2.LogicalName == "EntityAtivity")
            {
                QueryExpression expression3 = new QueryExpression("EntityAtivity");
                ColumnSet set2 = new ColumnSet();
                set2.AllColumns = true;
                expression3.ColumnSet = set2;
                ConditionExpression item = new ConditionExpression();
                item.AttributeName = "activityid";
                CurrentGuid = (Guid)entity2.Attributes["activityid"];
                item.Values.Add(this.CurrentGuid);
                FilterExpression expression5 = new FilterExpression();
                expression5.Conditions.Add(item);
                expression3.Criteria = expression5;
                EntityCollection entitys2 = service.RetrieveMultiple(expression3);
                foreach (Entity entity3 in entitys2.Entities)
                {
                    this.dbGuid = (Guid)entity3.Attributes["activityid"];
                    if (entity3.Attributes.Contains("to"))
                    {
                        try
                        {
                            foreach (Entity entity10 in ((EntityCollection)entity3.Attributes["to"]).Entities)
                            {
                                this.dbTo.Add(((EntityReference)entity10.Attributes["partyid"]).LogicalName);
                                this.dbToId.Add(((EntityReference)entity10.Attributes["partyid"]).Id);
                            }
                        }
                        catch (Exception)
                        {
                            this.dbTo.Clear();
                        }
                    }
                } // foreach
            }//if (entity2.LogicalName == "EntityAtivity")
    }//if (context.InputParameters.Contains("Target") && (context.InputParameters["Target"] is Entity))
}

知道我应该怎么做才能纠正插件?

2 个答案:

答案 0 :(得分:0)

所以我解决了我的问题。 我创建了两个步骤,用于创建和更新。

当我停用“创建步骤”并为更新步骤创建预映像时,请插入fetch to字段并显示值。

答案 1 :(得分:0)

您的问题和答案很难理解,因为您的英语可以使用某些工作,但我相信您的问题是您正在寻找未设置值的目标中的属性。如果尚未设置或更新属性,则它不会显示在插件的目标中。正如@AndyMeyers所说,您应该使用PreImagePostImage图像来定义您希望在插件处理中包含哪些属性。