检索 Dynamics CRM C# 插件中查找字段的显示值
我正在尝试检索 MS Dynamics CRM 4.0 插件中查找字段的显示值。该属性的值是一个 GUID,它指向另一个实体(在本例中是 salesorder 的所有者)。我使用如下代码检索“正常”属性:
CrmDateTime serviceOrderDateDT = (CrmDateTime)entity["submitdate"];
serviceOrderDate = serviceOrderDateDT.Value.ToString();
有关如何对查找字段的显示值执行此操作的任何想法?
I am trying to retrieve the display value of a lookup field in a plugin for MS Dynamics CRM 4.0. The value of the attribute is a GUID which points to another entity (owner of salesorder in this case). "Normal" attributes I retrieve with a code like this:
CrmDateTime serviceOrderDateDT = (CrmDateTime)entity["submitdate"];
serviceOrderDate = serviceOrderDateDT.Value.ToString();
Any ideas on how to do this for the display value of a lookup field?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
实际上,您需要将该属性转换为 Owner 而不是 Lookup 类型,即:
Actually, you need to cast that property to type Owner not Lookup, i.e.: