所以我正在编写一个控制台应用程序,它在CRM部署中合并重复的联系人。
此代码分为两部分。获取重复记录的GUID的部分和执行实际合并的部分。我的问题在于前者。
我使用客户的电话号码来检查代码中的唯一性,并且有一个txt文件,其中包含新行中的每个数字。
我需要填写此文本文件中的联系人列表,并将其传递给合并方法。
我可以定义一个硬编码的字符串,它可以这样工作但
实际进行合并的部分工作但是将所有这些重复填充到List中并将其传递的部分不会。我试着填充它,好像它是一个字符串列表,但显然这不是它与联系人的工作方式。
代码包含在下面。
using System;
using System.ServiceModel;
using Microsoft.Crm.Sdk.Messages;
using Microsoft.Xrm.Sdk;
using Microsoft.Xrm.Sdk.Client;
using Microsoft.Xrm.Sdk.Query;
using Zeno.Business;
using Zeno.Configuration;
using Zeno.CRMEntityModel;
using System.Collections.Generic;
using System.IO;
namespace MergeTool
{
public static class MergeContact
{
public static ContactBL bl = new ContactBL();
/// <param name="serverConfig">Contains server connection information.</param>
/// <param name="promptForDelete">When True, the user will be prompted to delete
/// all created entities.</param>
public static void Merge()
{
List<Contact> contactList = getAccountGuids();
for (int i = 0; i < contactList.Count; i++)
{
Contact contact = contactList[0];
Contact _subContact = contactList[1];
EntityReference target = new EntityReference();
target.Id = contact.ContactId.Value;
target.LogicalName = Contact.EntityLogicalName;
MergeRequest merge = new MergeRequest();
merge.SubordinateId = _subContact.ContactId.Value;
merge.Target = target;
merge.PerformParentingChecks = false;
Contact updateContent = new Contact();
updateContent.zeno_nebimcustomernumber = _subContact.zeno_nebimcustomernumber;
//updateContent....
if (string.IsNullOrEmpty(contact.FirstName))
{
updateContent.FirstName = _subContact.FirstName;
}
//further if conditions clipped for brevity
merge.UpdateContent = updateContent;
MergeResponse merged = (MergeResponse)bl.Execute(merge);
}
}
public static List<Contact> getAccountGuids()
{
//TO DO
// Get all duplicate contact mobile phone numbers
string mobilePhone = "+90(505)220 72 29";
return bl.RetrieveContactListByMobilePhone(mobilePhone);
}
}
}
根据要求,我在下面列出了ContactsBL的内容。
using Microsoft.Xrm.Sdk;
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using Zeno.CRMEntityModel;
using Zeno.Repository;
namespace Zeno.Business
{
public class ContactBL:BLBase
{
private ContactRepository contactRepository;
public ContactBL()
: base()
{
}
public ContactBL(IOrganizationService service)
: base(service)
{
}
public Guid CheckPhoneNumber(string phoneNumber)
{
this.contactRepository = new ContactRepository(this.Connection);
return contactRepository.CheckPhoneNumber(phoneNumber);
}
public List<Contact> RetrieveContactListByMobilePhone(string phoneNumber)
{
this.contactRepository = new ContactRepository(this.Connection);
return contactRepository.RetrieveContactListByMobilePhone(phoneNumber);
}
}
}
答案 0 :(得分:2)
有更好的方法可以找到重复项。在CRM中创建重复检测规则,然后从C#中,您可以向CRM发送请求以获取重复项(将使用这些规则为您查找重复项)。这是最简单的方法。
摘录自MSDN:
// PagingInfo is Required.
var request = new RetrieveDuplicatesRequest
{
BusinessEntity = new Account { Name = "Microsoft" }.ToEntity<Entity>(),
MatchingEntityName = Account.EntityLogicalName,
PagingInfo = new PagingInfo() { PageNumber = 1, Count = 50 }
};
Console.WriteLine("Retrieving duplicates");
var response =(RetrieveDuplicatesResponse)_serviceProxy.Execute(request);
for (int i = 0; i < response.DuplicateCollection.Entities.Count; i++)
{
var crmAccount = response.DuplicateCollection.Entities[i].ToEntity<Account>();
Console.WriteLine(crmAccount.Name + ", " + crmAccount.AccountId.Value.ToString());
}
答案 1 :(得分:1)
您似乎忘记了i
。
您不想在主循环中使用索引0
和1
,因为这会反复合并前两个实体。您应该使用迭代器变量i
代替。
而不是使用绝对索引初始化您的联系人:
Contact contact = contactList[0];
Contact _subContact = contactList[1];
您应该使用迭代器变量。
Contact contact = contactList[i];
Contact _subContact = contactList[i+1];
更新:可能 IndexOutOfBoundsException
请注意可能由于contactList[i+1]
引用而引发的 IndexOutOfBoundsException 。您应该通过与contactList.Count - 1
而不是contaclist.Count
进行比较来避免这种情况。 :
// BAD! : contactList[i+1] would throw IndexOutOfBoundsException on the last cycle.
for(int i=0; i < contactList.Count; i++)
// GOOD : contactList[i+1] would point to the last item in the last cycle so it should be okay.
for(int i=0; i < contactList.Count - 1; i++)