gpt4 book ai didi

c# - 在 .Net Dynamics CRM 应用程序中保存要联系的父帐户

转载 作者:太空宇宙 更新时间:2023-11-03 12:09:54 24 4
gpt4 key购买 nike

我正在学习 .net 应用程序中的 crm 开发。

我正在尝试将联系人与帐户相关联。但我没有在联系人实体的文档中找到 accountid

尝试关联这些记录时,这是如何工作的?

这是我的联系人 Controller 代码。

    [HttpPost]
public IActionResult Create(ContactEntityModels model)
{

newContact.firstname = model.firstname;

var contact = new Entity("contact");
{
contact["firstname"] = newContact.firstname;
contact["parentcustomerid_account"] = newContact.ParentAccount;
}

_crmContext.ServiceContext.AddObject(contact);

_crmContext.ServiceContext.SaveChanges();

return RedirectToAction("Contacts", "Admin");
}

最佳答案

您必须使用 EntityReference 对象来分配,如下所示:

    var contact = new Entity("contact");
{
contact["firstname"] = newContact.firstname;
contact["parentcustomerid"] = new EntityReference("account", <GUID>);
}

关于c# - 在 .Net Dynamics CRM 应用程序中保存要联系的父帐户,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52895739/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com