如何从 CRM 4.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须调用 MetadataService 才能获取具有 DisplayName 属性的 AttributeMetadata。
You'll have to make a call to the MetadataService to get the AttributeMetadata which has a DisplayName property.