Dynamics CRM 2011 附带 SDK 的附加文件

发布于 2024-11-25 07:39:11 字数 92 浏览 2 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笨死的猪 2024-12-02 07:39:11

为了以编程方式将文件附加到实体,必须首先在实体上启用注释(HasNotestrue)。

然后,创建一个 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 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文