csharp 演示使用select属性仅检索相关项的name属性的Aras最佳实践。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 演示使用select属性仅检索相关项的name属性的Aras最佳实践。相关的知识,希望对你有一定的参考价值。
Item workflow = this.newItem("Workflow","get");
// use the select attribute to retrieve only the name property of the related item
workflow.setAttribute("select", "related_id(name)");
Item workflowProcess = workflow.createRelatedItem("Workflow Process","get");
Item workflowProcessActivity = workflowProcess.createRelationship("Workflow Process Activity","get");
Item activity = workflowProcessActivity.createRelatedItem("Activity", "get");
activity.setID('activityId');
workflow = workflow.apply();
// generates the following AML query
// same effect as adding select="name" to the Workflow Process item
// <AML>
// <Item type="Workflow" action="get" select="related_id(name)">
// <related_id>
// <Item type="Workflow Process" action="get">
// <Relationships>
// <Item type="Workflow Process Activity" action="get">
// <related_id>
// <Item type="Activity" action="get" id="activityId"/>
// </related_id>
// </Item>
// </Relationships>
// </Item>
// </related_id>
// </Item>
// </AML>
以上是关于csharp 演示使用select属性仅检索相关项的name属性的Aras最佳实践。的主要内容,如果未能解决你的问题,请参考以下文章
csharp 演示从一组id中检索项集合的次优方法。
csharp 演示使用idlist属性根据id数组检索项目的Aras最佳实践。
csharp 演示次优查询以从Item检索source_id和source_type属性。
csharp 演示在创建不在curr中使用其属性的项目时使用doGetItem属性的Aras最佳实践
csharp 演示创建项目的次优方法,该项目的属性将不会在当前方法中使用。
csharp 返回使用join和distinct属性分配给候选项的视图