Microsoft CRM 4.0 LINQ - 使用 LINQ 从 CRM 获取属性显示名称
有人使用 Xrm Advanced Dev Extension 完成过此操作吗?我正在创建一个外部门户
假设我在帐户实体中有一个名为 aaa_accountfield 的属性。帐户实体 XML 已
<displaynames>
<displayname description="attribute display name" languagecode="1033" />
<displayname description="attribute display name in some other language" languagecode="1045" />
</displaynames>
提前致谢
Has anyone done this with the Xrm Advanced Dev Extension? I am creating an external portal
Let's say I have an attribute in the account entity called aaa_accountfield. The account entity XML has
<displaynames>
<displayname description="attribute display name" languagecode="1033" />
<displayname description="attribute display name in some other language" languagecode="1045" />
</displaynames>
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不确定它与 XML 有什么关系,但我很确定您可以使用 ADX 来获取 IOrganizationService,它应该能够发出元数据请求。我会尝试以下代码。您可能应该修改它以在获取第一个语言之前检查不同语言是否返回值,否则您将容易受到异常的影响。
Not sure what it has to do with XML but I'm pretty sure you can use the ADX to get an IOrganizationService which should be able to make metadata requests. I would give the following code a shot. You should probably modify it to check whether the different languages return values before grabbing the first or you will be susceptible to exceptions.