获取 CRM 插件(已安装)的过滤属性列表

发布于 2024-08-27 12:48:02 字数 169 浏览 5 评论 0原文

我安装了 Dynamics CRM 4.0 并编写了一个插件,注册了它,并设置了一个包含一些过滤属性的“步骤”。 2 个问题:

  1. 如何获取为我的插件配置的过滤属性列表? (从插件本身内部)
  2. 我如何获取当前正在使用的表单上实际存在的过滤属性的列表? (也在插件本身内)

I have Dynamics CRM 4.0 installed and wrote a plugin, registered it, and setup a "step" that included a few filtering attributes. 2 questions:

  1. How can I get a list of filtering attributes that are configured for my plugin? (from within the plugin itself)
  2. How can I get a list of those filtering attributes that are actually on the current form being used? (also within the plugin itself)

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

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

发布评论

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

评论(1

别念他 2024-09-03 12:48:02

如果您想获取发送到插件的图像中的每个属性,您可以在将其设置为动态实体后迭代属性包。这将包括实体上的每个字段。

DynamicEntity postEntity = (DynamicEntity)context.PostEntityImages["entityimage"]

foreach (Property p in postEntity.Properties)
{
    // Do something with my property
}

If you want to get every property in an image that you've sent to a plugin you can iterate through the property bag after setting it to a dynamic entity. This will include every field on the entity.

DynamicEntity postEntity = (DynamicEntity)context.PostEntityImages["entityimage"]

foreach (Property p in postEntity.Properties)
{
    // Do something with my property
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文