csharp 演示使用select语句仅检索查询中必需属性的Aras最佳实践。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 演示使用select语句仅检索查询中必需属性的Aras最佳实践。相关的知识,希望对你有一定的参考价值。

Item workflow = this.newItem("Workflow","get");
// use select attribute to retrieve only the necessary properties
workflow.setAttribute("select", "source_id,source_type");
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
// <AML>
//   <Item type="Workflow" action="get" select="source_id,source_type">
//     <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语句仅检索查询中必需属性的Aras最佳实践。的主要内容,如果未能解决你的问题,请参考以下文章

csharp 演示次优查询以从Item检索source_id和source_type属性。

雪花 JDBC 驱动程序内部错误:无法检索第一个箭头块的行数:null - 仅发生在 SELECT 语句上

仅当从另一个查询中选择时,SQL Select 语句才突然检索错误值

[学习记录]MySQL之初级查询语句(select,where)

如何在SQL Server查询语句(Select)中检索存储过程(Store Procedure)的结果集?

Oracle 检索数据(查询数据select语句)