在CRM C#中创建帐户的联系范围

时间:2017-07-07 08:17:10

标签: c# sdk dynamics-crm crm

我不知道如何创建绑定到帐户的联系人。我有一个带帐户和联系人的csv文件,我想将这些数据导入我的CRM。这是我在CRM中添加帐户的代码:

#region Column One Mappings
// Create a column mapping for a 'text' type field. Ajouter un Compte
ColumnMapping colMapping1 = new ColumnMapping()
{
    // Set source properties.
    SourceAttributeName = "my_new_accounts",
    SourceEntityName = "Account_1",

    // Set target properties.
    TargetAttributeName = "name",
    TargetEntityName = Account.EntityLogicalName,

    // Relate this column mapping with the data map.
    ImportMapId = new EntityReference(ImportMap.EntityLogicalName, importMapId),

    // Force this column to be processed.
    ProcessCode = new OptionSetValue((int)ColumnMappingProcessCode.Process)
};

// Create the mapping.
Guid colMappingId1 = _serviceProxy.Create(colMapping1);
#endregion

我想创建绑定到一个帐户的多个联系人。

1 个答案:

答案 0 :(得分:0)

您使用的示例代码来自CRM SDK,同样的示例包含用于映射父帐户查找映射的代码。

 // Create a lookup mapping to the parent account.  
        LookUpMapping parentLookupMapping = new LookUpMapping().........

请参阅此代码块,阅读评论,根据您的需要实施。

如果您只是尝试这种方法,请继续。或者您可以使用OOB数据导入向导进行导入。