I'm trying to create a bidirectional many-to-many relationship between 2 entities, but I end up getting 2 relationship tables instead of 1. For example:
this will create 2 tables:Code:field set --fieldName categories --element Category --cardinality MANY_TO_MANY --class Problem field set --fieldName problems --element Problem --cardinality MANY_TO_MANY --class Category
category_problems and problem_categories
BTW, very neat how roo knows to call it categories instead of categorys. Which library does it use for this?
Of course, I need that to be only 1 table and a bidirectional relationship... How do I specify this in roo?


Reply With Quote
. Can you please raise a feature improvement request for this?