Dynamics CRM 2011 附带 SDK 的附加文件
我在 Dynamics CRM 2011 中看到了一个功能,可以通过用户界面将文件附加到实体。 如何使用 Dynimcs CRM SDK 2011 和 C# 附加文件?
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#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了以编程方式将文件附加到实体,必须首先在实体上启用注释(
HasNotes
为true
)。然后,创建一个
Annotation
实体记录(更多信息请参见: http://msdn.microsoft.com/en-us/library/gg334398.aspx)。要将其关联到特定记录,请使用AssociateRequest
(更多信息请参见:http://msdn.microsoft.com/en-us/library/microsoft.xrm.sdk.messages.associaterequest.aspx)。这里有一个至少创建注释的示例: http://msdn.microsoft .com/en-us/library/gg328429.aspx。
In order to attach a file to an entity programmatically, it must first have Notes enabled on the entity (
HasNotes
istrue
).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 anAssociateRequest
(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.