-1

我们没有任何后端或 RFC 到数据库表。因此,我们对 get_entity、get_entityset... 进行了虚拟实现,以便通过调试提供数据。

DATA Model:
Employee Entity { Emp_name, **Emp_id**, Emp_address}
Company Entity { Company_name, **Company_id**, Company_type}
Education Entity {qual_name, qual_type, **college_id**, year_of_passing}

Associations:
EmployeeToCompany;
EmployeeToEducation;

虽然调试时数据出现在内部表中,但在输出时不会显示。

4

1 回答 1

-1

问题是:关联(在数据模型中)

员工到公司 1..1

EmployeeToEducation 1..1

我们将它们实现为表格类型。因此,它无法将表读入结构。

解决方案:

EmployeeToCompany 1..M
EmployeeToEducation 1..M

或者

EmployeeToCompany 1..1
EmployeeToEducation 1..1

implement these associations as structures.

于 2016-03-09T06:21:10.947 回答