如何从 CRM 4.0 插件检索属性显示名称

发布于 2024-10-31 09:26:09 字数 230 浏览 0 评论 0原文

如何从 CRM 插件获取自定义属性的显示名称?这段代码没有给我名字。请告诉我。谢谢

            DynamicEntity entity = (DynamicEntity)context.InputParameters.Properties["Target"];
            String str = (String)entity.Properties["name"];

How can I get the Display name of Custom Attribute from CRM Plugin? This code doesn't give me the name. Please let me know. Thank you

            DynamicEntity entity = (DynamicEntity)context.InputParameters.Properties["Target"];
            String str = (String)entity.Properties["name"];

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

两仪 2024-11-07 09:26:09

您必须调用 MetadataService 才能获取具有 DisplayName 属性的 AttributeMetadata。

You'll have to make a call to the MetadataService to get the AttributeMetadata which has a DisplayName property.

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