0

トレーニングの演習として、Microsoft Dynamics CRM 2011 のカスタム ワークフローを作成しようとしています。私が使用したコードは以下のとおりです。標準のプラグインでは問題なく動作しますが、カスタム ワークフローの一部として実行すると、キーが辞書に存在しないというエラーが表示されます。誰でもこれの理由を見つけることができますか? すべて正しいエンティティ名とフィールド名を確認しました。

ありがとう

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ServiceModel;
using System.Collections.ObjectModel;

using System.Activities;
using Microsoft.Xrm.Sdk;
using Microsoft.Xrm.Sdk.Workflow;
using Microsoft.Xrm.Sdk.Query;
using Microsoft.Xrm.Sdk.Messages;

using System.Diagnostics;


namespace TestWflow
{

    public class SampleCustomActivity : CodeActivity
    {


        protected override void Execute(CodeActivityContext executionContext)
        {
            //Activity code

            // Get the context service.
            IWorkflowContext context = executionContext.GetExtension<IWorkflowContext>();
            IOrganizationServiceFactory serviceFactory = executionContext.GetExtension<IOrganizationServiceFactory>();

            // Use the context service to create an instance of IOrganizationService.
            IOrganizationService service = serviceFactory.CreateOrganizationService(context.InitiatingUserId);

            if (context.Depth == 1)
            {

                Entity targetCont = null;
                targetCont = (Entity)context.InputParameters["Target"];
                Guid contID = targetCont.Id;
                ColumnSet contCols = new ColumnSet("jobtitle");

                targetCont = service.Retrieve("contact", contID, contCols);

                targetCont.Attributes["jobtitle"] = "test jobtitle here";
                service.Update(targetCont);


            }



        }



    }


}
4

1 に答える 1