Tagged Questions
The parentid tag has no wiki summary.
2
votes
1answer
755 views
How can I set parent-child relation on same table using ActiveRecord?
How can I set parent-child relation on same table?
Id int,
title string,
ParentId int ---> this is refer to Id
0
votes
1answer
287 views
JPA map relation entity parentID
could someone help me to understand how can I define an entity with JPA mapping that has a relation with it self?
For example, my entity is CompanyDivision, divisionA contains divisionB, divisionC
...