我不知道如何使用c#
更新ms crm中的全名,地址等复合字段if (dataRow[i].ToString() == string.Empty)
{
selectedEntity["fullname"] = null;
}
else
{
selectedEntity["fullname"] = "ms crm";
//error
}
//it is not getting fullname in entity
答案 0 :(得分:4)
您无法直接设置复合字段的值。您需要设置基础字段(例如设置ObjectA
和firstname
将更改联系人中lastname
的值。
MSDN的以下引用解释了这一点(尽管在表单脚本的上下文中):