我创建了新实体。
从该实体我调用创建商机的自定义工作流活动实体。 它有效,但另外我必须改变创造机会的一些领域。 (我必须添加机会产品,并且必须为每个机会更改价目表。)
作为测试我尝试在创建后更新帐户字段,但它失败了字段。当我在创建之前填充此帐户字段时,它可以工作,所以它不是那个。 以下是代码的一部分:
Entity entity = null;
if (context.InputParameters != null && context.InputParameters.Contains("Target") && context.InputParameters["Target"] is Entity)
{
entity = (Entity)context.InputParameters["Target"];
}
else
{
entity = service.Retrieve(context.PrimaryEntityName, ((Guid)context.PrimaryEntityId), new ColumnSet(true));
}
Entity opportunity = new Entity("opportunity");
string name = entity.GetAttributeValue<string>("subject");
opportunity["name"] = name;
opportunityId = service.Create(opportunity);
EntityReference accountlookup = (EntityReference)entity.Attributes["ad_sendto"];
Guid accountId = accountlookup.Id;
opportunity["parentaccountid"] = new EntityReference("account", accountId);
service.Update(opportunity);
重复一遍,它创造了机会,但它不适用于更新,有没有其他方法可以做到这一点,或者我在这里有一些错误?
答案 0 :(得分:2)
失败是因为您尝试更新没有设置主键(opportunityid)的opportunity
实体。
为什么不在创建操作期间分配parentaccountid
,而不是在创建机会后更新机会?
var opportunity = new Entity("opportunity");
opportunity["name"] = entity.GetAttributeValue<string>("subject"); ;
opportunity["parentaccountid"] = entity.Attributes["ad_sendto"];
opportunityId = service.Create(opportunity);
对于将来的参考,如果您必须更新刚刚创建的实体或任何实体:
var opportunityToUpdate = new Entity("opportunity")
{
Id = opportunityId
};
opportunityToUpdate["parentaccountid"] = entity.Attributes["ad_sendto"];
service.Update(opportunityToUpdate);