I saw a feature in Dynamics CRM 2011 of attaching file to an entity with user interface. How I can attach file using Dynimcs CRM SDK 2011 and C#?

link|improve this question

68% accept rate
feedback

1 Answer

up vote 4 down vote accepted

In order to attach a file to an entity programmatically, it must first have Notes enabled on the entity (HasNotes is true).

Then, create an Annotation entity record (more information here: http://msdn.microsoft.com/en-us/library/gg334398.aspx). To associate it to a specific record, use an AssociateRequest (more here: http://msdn.microsoft.com/en-us/library/microsoft.xrm.sdk.messages.associaterequest.aspx).

There is a sample of at least creating an annotation here: http://msdn.microsoft.com/en-us/library/gg328429.aspx.

link|improve this answer
1  
@Nozim Actually, that article says that AssignUserRolesRole was removed and that you should use AssociateRequest instead... The documentation I linked in the answer is for Microsoft Dynamics CRM 2011. – Steven Oxley Jul 21 '11 at 19:20
Sorry, I should have read it more carefully :) – Nozim Jul 22 '11 at 3:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.