Hello Community,
I wanted tor retrieve Email Attachment from the D365 in C# code activity.
I found some blogs but the code which is mentioned on this blog is having object name as: ActivityMimeAttachment
https://social.microsoft.com/Forums/en-US/2c70e745-bd41-4b27-94e6-44685519ed49/custom-workflow-to-read-xml-attachment-crm-2011-online?forum=crm
But I am not able to resolve it by any assembly.
Do anyone know how to make this work?
Error: ActivityMimeAttachment does not exist in current context.
private EntityCollection GetAttachments(IOrganizationService service, Guid id)
{
//Query for the attachments
QueryExpression query = new QueryExpression()
{
EntityName = ActivityMimeAttachment.EntityLogicalName,
ColumnSet = new ColumnSet("filesize", "filename"),
Criteria = new FilterExpression
{
Conditions =
{
new ConditionExpression
{
AttributeName = "objectid",
Operator = ConditionOperator.Equal,
Values = { id }
}
}
}
};
return service.RetrieveMultiple(query);
}
Thank you,
Milansinh Raj