How to get the Contact Guids from a PartyList in a Plugin?

丶灬走出姿态 提交于 2019-12-07 13:30:57

问题


I'm making a plugin that triggers on the create message of a custom activity SMS. These plugin will send the actual sms using a third party sms service provider.

Therefore i need to get the mobilephone numbers for every contact in the "To" field of the SMS activity. This is a field of type: PartyList.

I'm currently using the following code:

EntityCollection Recipients;
Entity entity = (Entity) context.InputParameters["Target"];

IOrganizationServiceFactory serviceFactory = (IOrganizationServiceFactory)serviceProvider.GetService(typeof(IOrganizationServiceFactory));
IOrganizationService service = serviceFactory.CreateOrganizationService(context.UserId);

Content = entity.GetAttributeValue<String>("subject");
Recipients = entity.GetAttributeValue<EntityCollection>("to");

for (int i = 0; i < Recipients.Entities.Count; i++)
{
  Entity ent= Recipients[i];

  string number = ent["MobilePhone"].ToString();    
}

But this is not working, i think the ent variable contains no attributes.

I've tried coding with ActivityParty also but not luck either.

I hope someone of you can help me with this one.

Thanks!


回答1:


Recipients is a list of ActivityParty, not of contacts, accounts, ... . Therefore you have to read its PartyId

EntityReference partyId = ent.GetAttributeValue<EntityReference>("partyid");

With this information you have to look for the record which is referecend with this partyID. It could be a contact, an account, a systemuser, ... You'll get this information trough

var partyType = partyId.LogicalName;

Then you could retrieve the record this record in order to read the number.




回答2:


Here's is how I finally did it:

EntityCollection Recipients;
Entity entity = (Entity) context.InputParameters["Target"];

IOrganizationServiceFactory serviceFactory 
  = (IOrganizationServiceFactory)serviceProvider.GetService(
    typeof(IOrganizationServiceFactory)); 
IOrganizationService service = serviceFactory
  .CreateOrganizationService(context.UserId); 

Content = entity.GetAttributeValue<String>("subject"); 
Recipients = entity.GetAttributeValue<EntityCollection>("to"); 

for (int i = 0; i < Recipients.Entities.Count; i++)
{
  ActivityParty ap = Recipients[i].ToEntity<ActivityParty>();
  String contactid = ap.PartyId.Id.ToString();
  Contact c = (Contact) service.Retrieve(
    Contact.EntityLogicalName,
    ap.PartyId.Id,
    new ColumnSet(new string[]{ "mobilephone" }));
  String mobilephone = c.MobilePhone;
  ...
} 


来源:https://stackoverflow.com/questions/8155771/how-to-get-the-contact-guids-from-a-partylist-in-a-plugin

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!