检索 Dynamics CRM C# 插件中查找字段的显示值

发布于 2024-08-12 19:55:11 字数 315 浏览 4 评论 0原文

我正在尝试检索 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 技术交流群。

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

发布评论

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

评论(2

雨轻弹 2024-08-19 19:55:11
Owner ownerLookup = (Owner)entity["ownerid"];
string ownerName = ownerLookup.name;
Owner ownerLookup = (Owner)entity["ownerid"];
string ownerName = ownerLookup.name;
半窗疏影 2024-08-19 19:55:11

实际上,您需要将该属性转换为 Owner 而不是 Lookup 类型,即:

(Owner)entity["ownerid"]

Actually, you need to cast that property to type Owner not Lookup, i.e.:

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