I understand that Entity Object Definition is XML data that represents metadata and corresponds to DB table.
Example:
<Entity
xmlns="http://xmlns.oracle.com/bc4j"
Name="Departments"
Version="11.1.1.53.3"
DBObjectType="table"
DBObjectName="DEPARTMENTS"
AliasName="Departments"
BindingStyle="OracleName"
UseGlueCode="false">
<DesignTime>
<AttrArray Name="_publishEvents"/>
</DesignTime>
<Attribute
Name="DepartmentId"
IsNotNull="true"
Precision="4"
Scale="0"
ColumnName="DEPARTMENT_ID"
SQLType="NUMERIC"
Type="oracle.jbo.domain.Number"
ColumnType="NUMBER"
TableName="DEPARTMENTS"
PrimaryKey="true">
<DesignTime>
<Attr Name="_DisplaySize" Value="22"/>
</DesignTime>
</Attribute>
I understand that Entity Attributes corresponds to DB table columns.
BUT I CAN`T understand what is Entity Object Instance. I know that it corresponds to one single row from DB table and for every row there is a different EOI, but where can I find it? Any example and simple explanation would be helpful! :)