如何使用 IOrganizationservice ,.retrieve 方法检索帐户实体的系统属性

发布于 2024-12-24 01:16:00 字数 449 浏览 0 评论 0原文

我有一个要求,需要检索实体的系统属性。

                           ColumnSet cset = new ColumnSet(true);
                           cset.AllColumns = true;

                           Entity capconnect=(Entity)_servicecapconnect.Retrieve("account",cc.Key,cset);

当我检索实体时,capconnect 仅具有帐户的自定义属性。但我有兴趣获取诸如“telephone1”“address1_line1”之类的属性,这些属性是帐户实体的系统属性。

我在数据库中查看了帐户实体有 60 列,但检索到的属性只有 46 个,这些都是自定义属性。

我很欣赏你的意见。 -阿基拉

I have a requirement where I need to retrieve the system attributes of an entity.

                           ColumnSet cset = new ColumnSet(true);
                           cset.AllColumns = true;

                           Entity capconnect=(Entity)_servicecapconnect.Retrieve("account",cc.Key,cset);

When I do retrieve the entity capconnect has only the custom attributes of account.But I am interested in getting attributes like "telephone1" "address1_line1" which are system attributes of account entity.

I looked in the database the account entity has 60 columns but the attributes retrieved are only 46 which are all the custom attributes.

I appreciate your inputs.
-Akila

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

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

发布评论

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

评论(1

分分钟 2024-12-31 01:16:00

我假设实体中不存在的属性没有值。这是正常的,因为由于性能原因,响应将仅包含包含值的字段。

因此,响应不会因为空值而变得臃肿。

I assume that the properties, which are not present in the entity, don't have a value. This is normal as the response will only include the fields which contain values due to performance reasons.

Therefore the response won't be bloated with null values.

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