0

我们想使用实例在我们生成的模型中插入一些数据。但是,我们有包含轻量级实体的实体,如下所示:

<cf:entity name="O" namespace="{0}.AOA">
    [...]
    <cf:property name="B" typeName="BO">
       [...]

其中 BO 类型被定义为轻量级实体:

<cf:entity name="BO" namespace="{0}.AOA" lightweight="true">    
    <cf:property name="IdentificatiecodeOR" typeName="AN16">      
    </cf:property>    
    [...]

应该如何定义实体 O 的实例以在 identificatecodeOR 属性中输入数据?

4

1 回答 1

0

这是一个使用 Contact 实体和轻量级 Address 实体的示例。它是使用 Codefluent 实体的 Visual Modeler 组件创建的。您没有使用可视化建模器吗?

<cf:entity name="Contact" namespace="Demo1" categoryPath="/Demo1">
<cf:property name="Id" key="true" />
<cf:property name="FirstName" />
<cf:property name="LastName" />
<cf:property name="Address" typeName="{0}.Address" />
<cf:instance>
  <cf:instanceValue name="Id">b6ec9c67-755d-42d8-ae7c-0ac3cab8db1f</cf:instanceValue>
  <cf:instanceValue name="FirstName">Jon</cf:instanceValue>
  <cf:instanceValue name="LastName">Smith</cf:instanceValue>
  <cf:instanceValue name="Address" preserveEscaping="true"><City>San Jose</City><Line1>100 Main St</Line1><Line2>Bld 5</Line2><PostalCode>99999</PostalCode><State>FL</State></cf:instanceValue>
</cf:instance>

于 2015-10-19T15:15:12.900 回答